We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a3d669 commit 84002a9Copy full SHA for 84002a9
README.md
@@ -1,9 +1,26 @@
1
# Moeru AI Blog
2
3
-## Local Development
+## Development
4
5
```bash
6
deno task build # build
7
deno task serve # serve
8
deno task cms # cms
9
```
10
+
11
+## Writing new post
12
13
+Only Moeru AI members can add new posts. (nonetheless, all typo fix are welcome)
14
15
+Add a new `.md` file to `src/posts` based on the following format:
16
17
+```ts
18
+interface Data {
19
+ title: string
20
+ date: string // 'YYYY-MM-DD'
21
+ author: string // multiple authors example: 'Foo, Bar'
22
+ tags?: string[]
23
+}
24
+```
25
26
+Have fun!
0 commit comments