You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Generate a new repository](https://github.com/saicaca/fuwari/generate) from this template or fork this repository.
36
-
- Or run one of the following commands:
37
-
```sh
38
-
npm create fuwari@latest
39
-
yarn create fuwari
40
-
pnpm create fuwari@latest
41
-
bun create fuwari@latest
42
-
deno run -A npm:create-fuwari@latest
43
-
```
44
-
2. To edit your blog locally, clone your repository, run `pnpm install` to install dependencies.
45
-
- Install [pnpm](https://pnpm.io) `npm install -g pnpm`if you haven't.
46
-
3. Edit the config file `src/config.ts` to customize your blog.
47
-
4. Run `pnpm new-post <filename>` to create a new post and edit it in `src/content/posts/`.
48
-
5. Deploy your blog to Vercel, Netlify, GitHub Pages, etc. following [the guides](https://docs.astro.build/en/guides/deploy/). You need to edit the site configuration in `astro.config.mjs` before deployment.
49
-
50
-
## 📝 Frontmatter of Posts
51
-
52
-
```yaml
53
-
---
54
-
title: My First Blog Post
55
-
published: 2023-09-09
56
-
description: This is the first post of my new Astro blog.
57
-
image: ./cover.jpg
58
-
tags: [Foo, Bar]
59
-
category: Front-end
60
-
draft: false
61
-
lang: jp # Set only if the post's language differs from the site's language in `config.ts`
62
-
---
63
-
```
64
-
65
-
## 🧩 Markdown Extended Syntax
66
-
67
-
In addition to Astro's default support for [GitHub Flavored Markdown](https://github.github.com/gfm/), several extra Markdown features are included:
68
-
69
-
- Admonitions ([Preview and Usage](https://fuwari.vercel.app/posts/markdown-extended/#admonitions))
70
-
- GitHub repository cards ([Preview and Usage](https://fuwari.vercel.app/posts/markdown-extended/#github-repository-cards))
71
-
- Enhanced code blocks with Expressive Code ([Preview](https://fuwari.vercel.app/posts/expressive-code/) / [Docs](https://expressive-code.com/))
28
+
-[x] Twikoo and artalk comment sections
72
29
73
30
## ⚡ Commands
74
31
75
-
All commands are run from the root of the project, from a terminal:
0 commit comments