From 53f2d2ee220be1feca44df11a53c11c2136cfe13 Mon Sep 17 00:00:00 2001 From: Collin Rapp Date: Fri, 6 Mar 2020 12:20:37 -0800 Subject: [PATCH] Added cmd script for building docs --- docs/run.cmd | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docs/run.cmd diff --git a/docs/run.cmd b/docs/run.cmd new file mode 100644 index 0000000..98e202b --- /dev/null +++ b/docs/run.cmd @@ -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