Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 498 Bytes

File metadata and controls

25 lines (16 loc) · 498 Bytes

Static site generator

A small Python tool that turns Markdown in content/ into HTML using template.html, copies assets from static/ into public/, and mirrors the folder layout in the output.

Generate the site

python3 src/main.py

Preview locally

./main.sh

This generates the site, then serves public/ on http://localhost:8888.

Tests

./test.sh

(Boot.dev course project — custom Markdown → HTML pipeline.)