Give it it's own CSS file.

It's good enough for now.
This commit is contained in:
sforman
2023-09-28 18:37:01 -07:00
parent aeb1eee646
commit c3054377a6
6 changed files with 1050 additions and 1148 deletions
+3 -9
View File
@@ -1,17 +1,11 @@
FUNCDOCS = $(wildcard ../*.md)
TITLE = --metadata title="Thun Function Reference"
TOC = --toc --toc-depth=2
CSS = --css=/css/fonts.css --css=/css/func_ref.css
all: mov
FuncRef.html: Function-Reference.md
pandoc -s $(TOC) $(TITLE) --ascii Function-Reference.md -o FuncRef.html
Function-Reference.md: HEADER.md $(FUNCDOCS)
awk 'FNR==1 && NR > 1 {print ""}1' HEADER.md $(FUNCDOCS) > Function-Reference.md
# https://stackoverflow.com/questions/8183191/concatenating-files-and-insert-new-line-in-between-files
# WTF would we do w/o the Internet? Know our tools well?
pandoc -s $(TOC) $(TITLE) $(CSS) --ascii Function-Reference.md -o FuncRef.html
mov: FuncRef.html
cp -v $? ../../html/
cp -v $? ../html/