Generate html book or static site from Markdown files
python -m docbook --src=docbook.md --out=docbook.html
python -m docbook --src=source/page-*.md --out=output/{1}.html
from “article-abc.md” to “article-abc.html”
--src=article-abc.md --out=article-abc.html
from “articles/article-abc.md” to “public/article-abc.html”
--src=articles/article-abc.md --out=public/article-abc.html
from “articles/*.md” to “public/*.html”
--src=articles/*.md --out=public/{1}.html
from “articles/*/doc.md” to “public/*.html”
--src=articles/*/doc.md --out=public/{1}.html
from “articles/*/doc.md” to “public/*/index.html”
--src=articles/*/doc.md --out=public/{1}/index.html
from “articles/*/*.md” to “public/*-*.html”
--src=articles/*/*.md --out=public/{1}-{2}.html