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。
随心所欲地使用它。