Blognow is a dead simple static site generator for blogs.
blognow my-blog
creates a new blog in the directory my-blog.
blognow
generates a static site in dist/. You can copy these files to any
place where you can host static websites. It looks in the posts/ directory
and formats any correctly structured .md file as HTML.
As of now, it creates an index page (the latest post), individual post pages, and an archive page.
The format for a post is:
---
title = "Post Title"
date = 2019-06-28
---
# Heading 1
## Heading 2
### Heading 3
This is a paragraph.
- This
- is
- a
- list.
Refer to a Markdown reference for a complete list of formatting options.
$ npm i http-server -g
$ http-server dist/
Blognow is currently under development and is not stable. If you would like to report an issue or suggest a feature, check out the GitHub issues.
Pull requests are welcome!
Unlicense