This commit is contained in:
Tiara Rodney 2026-02-10 18:59:59 +01:00
commit 76266cedc6
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
23 changed files with 4041 additions and 0 deletions

12
Makefile Normal file
View file

@ -0,0 +1,12 @@
.PHONY: clean
all: build/html build/markdown
build/html:
sphinx-build -b html src build/html
dist/markdown:
sphinx-build -M markdown src dist
clean:
rm -rv build