sveltekit markdown blog
1.0.0
一個從 Markdown 文件靜態產生的簡單部落格。使用 SvelteKit 建置。
在這裡查看現場演示
# Clone the repository
git clone https://github.com/edde746/sveltekit-markdown-blog.git
# Navigate to the project directory
cd sveltekit-markdown-blog
# Install dependencies with pnpm
pnpm install
# Run the development server
pnpm run dev
# Generate the static site
pnpm run build
要新增帖子,請在posts
目錄中建立一個 markdown 檔案。該文件的頂部應包含以下前面的內容:
<!--
Title: <title of the post>
Author: <your name here>
Published: <date in YYYY-MM-DD HH:MM format>
Categories: <comma-separated list of categories>
Thumbnail: <url, e.g. images/image.webp then put that image in the static/images folder>
-->
要部署您的博客,您只需將build
目錄的內容上傳到您的 Web 伺服器即可。或者,您可以使用靜態網站託管服務,例如 Cloudflare Pages。
隨心所欲地使用它。