diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-06-26 17:24:15 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-06-26 17:24:15 -0700 |
commit | 7ded9d4af0e33f0cd5df4817ff0b2ad0dec12b4e (patch) | |
tree | 6b7eae6787e17f3b48c8564e715e0fa55d8c0dfe /windows | |
parent | 38c97320ef551e63efdd4637dbbd6ba2666a1d66 (diff) | |
download | pandoc-7ded9d4af0e33f0cd5df4817ff0b2ad0dec12b4e.tar.gz |
Include table of contents in README.html in Windows package.
Diffstat (limited to 'windows')
-rw-r--r-- | windows/make-windows-installer.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/make-windows-installer.bat b/windows/make-windows-installer.bat index 2f0bf4b88..892a61cdc 100644 --- a/windows/make-windows-installer.bat +++ b/windows/make-windows-installer.bat @@ -2,7 +2,7 @@ stack install --test
if %errorlevel% neq 0 exit /b %errorlevel%
for /f "delims=" %%a in ('stack path --local-bin-path') do @set BINPATH=%%a
-%BINPATH%\pandoc.exe -s -S ..\README -o README.html
+%BINPATH%\pandoc.exe -s -S --toc ..\README -o README.html
if %errorlevel% neq 0 exit /b %errorlevel%
%BINPATH%\pandoc.exe -s ..\COPYING -t rtf -S -o COPYING.rtf
if %errorlevel% neq 0 exit /b %errorlevel%
|