Skip to content

Commit 417b4a6

Browse files
committed
include new split-up Programmer's Reference Guide in package
1 parent 95471dc commit 417b4a6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,10 @@ define add_extra_files_to_package
137137
pandoc --from gfm --to html -c github-pandoc.css --standalone --metadata pagetitle="Commander X16 Emulator" README.md --output $(TMPDIR_NAME)/docs/README.html
138138
pandoc --from gfm --to html -c github-pandoc.css --standalone --metadata pagetitle="Commander X16 KERNAL/BASIC/DOS ROM" ../x16-rom/README.md --output $(TMPDIR_NAME)/docs/KERNAL-BASIC.html
139139
pandoc --from gfm --to html -c github-pandoc.css --standalone --metadata pagetitle="Commander X16 Programmer's Reference Guide" ../x16-docs/Commander\ X16\ Programmer\'s\ Reference\ Guide.md --output $(TMPDIR_NAME)/docs/Programmer\'s\ Reference\ Guide.html --lua-filter=mdtohtml.lua
140+
for IN in ../x16-docs/X16\ Reference\ *; do \
141+
OUT=$$(basename "$$IN" .md).html; \
142+
pandoc --from gfm --to html -c github-pandoc.css --standalone --metadata pagetitle="Commander X16 Programmer's Reference Guide" "$$IN" --output "$(TMPDIR_NAME)/docs/$$OUT" --lua-filter=mdtohtml.lua; \
143+
done
140144
pandoc --from gfm --to html -c github-pandoc.css --standalone --metadata pagetitle="VERA Programmer's Reference.md" ../x16-docs/VERA\ Programmer\'s\ Reference.md --output $(TMPDIR_NAME)/docs/VERA\ Programmer\'s\ Reference.html
141145
cp github-pandoc.css $(TMPDIR_NAME)/docs
142146
endef

0 commit comments

Comments
 (0)