-
-
Save pagelab/e4d7e34d79d689202fdbb821ec2bea9c to your computer and use it in GitHub Desktop.
Revisions
-
mmparker renamed this gist
Jul 13, 2012 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
mmparker created this gist
Jul 13, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ REM This file converts all of the Markdown files to HTML. REM Converting in the current directory REM %%~ni returns just the filename of %%i, not its extension for %%i in (*.markdown) do pandoc -f markdown -t html5 %%~ni.markdown > html/%%~ni.html REM Converting a subdirectory - just slap it on front for %%i in (report_pages/*.markdown) do pandoc -f markdown -t html5 report_pages/%%~ni.markdown > html/report_pages/%%~ni.html