Make Functor-Reference from individual pages.

This is a little clunky, for example, see "!-" aka "not negative".
This commit is contained in:
Simon Forman
2022-03-22 21:47:23 -07:00
parent c5b59e1549
commit 9173e6de44
3 changed files with 53 additions and 46 deletions
+7 -1
View File
@@ -1,3 +1,9 @@
FUNCDOCS != ls [a-z]*.md
all:
all: Functor-Reference.md
pandoc -s --toc --toc-depth=2 --ascii Functor-Reference.md -o FuncRef.html
Functor-Reference.md: HEADER.md $(FUNCDOCS)
cat HEADER.md $(FUNCDOCS) > Functor-Reference.md