Rework docs, simpler (no Sphinx.)

This commit is contained in:
Simon Forman
2022-09-15 18:14:01 -07:00
parent 68838155dc
commit fe6567fd9e
6 changed files with 381 additions and 37 deletions
+14
View File
@@ -0,0 +1,14 @@
README=../README.md
BUILD_SCRIPT=build_index.py
GENERATOR=python $(BUILD_SCRIPT)
HTML_OUTPUT_DIR=./html
all: $(HTML_OUTPUT_DIR)/index.html
$(HTML_OUTPUT_DIR)/index.html: $(README) $(BUILD_SCRIPT)
$(GENERATOR) $(README) > $(HTML_OUTPUT_DIR)/index.html
# python -m markdown -f index.html -o html $(README)