Skip to content

Commit

Permalink
include new split-up Programmer's Reference Guide in package
Browse files Browse the repository at this point in the history
  • Loading branch information
mist64 committed Apr 27, 2022
1 parent 95471dc commit 417b4a6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,10 @@ define add_extra_files_to_package
pandoc --from gfm --to html -c github-pandoc.css --standalone --metadata pagetitle="Commander X16 Emulator" README.md --output $(TMPDIR_NAME)/docs/README.html
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
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
for IN in ../x16-docs/X16\ Reference\ *; do \
OUT=$$(basename "$$IN" .md).html; \
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; \
done
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
cp github-pandoc.css $(TMPDIR_NAME)/docs
endef
Expand Down

0 comments on commit 417b4a6

Please sign in to comment.