File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff 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
142146endef
You can’t perform that action at this time.
0 commit comments