Skip to content

moeru-ai/blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Moeru AI Blog

Development

deno task build # build
deno task serve # serve
deno task cms # cms

Writing new post

Only Moeru AI members can add new posts. (nonetheless, all typo fix are welcome)

Add a new .md file to src/posts based on the following format:

interface Data {
  title: string
  date: string // 'YYYY-MM-DD'
  author: string // multiple authors example: 'Foo, Bar'
  tags?: string[]
}

Have fun!