https://gaultier.github.io/blog/
Requirements:
- Odin
cmark
git
E.g.: apt install cmark git
Build this blog (i.e. convert markdown files to HTML):
$ odin run src
# Or directly (this binary is available after running the above command once, or from the Github releases):
$ ./src.bin
Serve the files locally:
$ python3 -m http.server -d ..
Optimize a PNG:
$ pngquant foo.png -o foo.tmp && mv foo.tmp foo.png