Added cmd script for building docs

This commit is contained in:
Collin Rapp
2020-03-06 12:20:37 -08:00
parent cb807c334a
commit 53f2d2ee22

17
docs/run.cmd Normal file
View File

@@ -0,0 +1,17 @@
@echo off
REM wsl run.sh
REM start "" chrome.exe TODO.html
REM pandoc.exe -s -f gfm -t html TODO.md -o TODO.html --metadata pagetitle="TODO.html"
REM .\TODO.html
call :makedoc DONE
call :makedoc IDEAS
call :makedoc TODO
call :makedoc TESTS
goto :eof
:makedoc
pandoc.exe -s -f gfm -t html %1.md -o %1.html --metadata pagetitle="%1.html"
goto :eof