Yet another static website generator, inspired by jem-press, jemdoc, and jemdoc+Mathjax. You're probably better off using one of those...
This basically supports nothing except static webpages for now, using pandocs and a simple makefile. In the future I might want to add support for Mathjax.
I used this to build my website: jtsense.com. Source code here: code
Requires Pandoc. Mac:
port install pandoc
Linux:
apt-get install pandoc
Put Markdown files under the content/
directory. Files in the directory with the extension .md
will get parsed and converted to .html
.
The navigation menu is controlled through helper/menu.md
.
To deploy to a server, change the variable DEPLOY
in the makefile to point to your server.
To build and deploy:
make
make update
As an example, this repository can be built as-is.
Warning: by design, anything deleted locally will be deleted on the server.