blogc

Blog compiler with template engine and markup language support.

brewmacoslinux
Try with needOr install directly
Source

About

Blog compiler with template engine and markup language

Commands

blogc

Examples

create a static blog from markdown files$ blogc -D content/posts -t templates/post.html -o output/
render a blog post with custom template$ blogc -i post.md -t post-template.html -o post.html
generate a blog index page from multiple posts$ blogc -D posts/ -t templates/index.html -o index.html
convert markdown to HTML with template engine$ blogc -i article.md -o article.html
build entire static website from posts and templates$ blogc -D content/ -t templates/ -o public/