A static site generator in 500 lines. No dependencies. No magic.
Minimal Blog Engine is exactly what it sounds like: a way to turn Markdown files into a website with zero configuration and zero dependencies beyond Python 3.
I built this because every other static site generator I tried was either too complicated, too slow, or required me to learn Yet Another Configuration Language.
Clone the repo and run:
# Clone the repository git clone https://github.com/khabib/minimal-blog cd minimal-blogCreate your first post
echo "# Hello World" > posts/hello.mdBuild the site
python blog.py buildStart local server
python blog.py serve
I was tired of:
MIT — Do whatever you want with it.