LameXP/etc/Deployment/_mkdocs.bat

29 lines
953 B
Batchfile
Raw Normal View History

@echo off
2014-12-22 14:44:09 +01:00
setlocal EnableDelayedExpansion
"%~dp0\..\Utilities\CEcho.exe" cyan "\n==========================================================================="
"%~dp0\..\Utilities\CEcho.exe" cyan "Building software documentation..."
"%~dp0\..\Utilities\CEcho.exe" cyan "===========================================================================\n"
2014-12-22 22:40:20 +01:00
2014-12-22 14:44:09 +01:00
:: ------------------------------------------
:: Setup Paths
:: ------------------------------------------
call "%~dp0\_paths.bat"
:: ------------------------------------------
:: Create Documents
:: ------------------------------------------
for %%i in ("%~dp0\..\..\doc\*.md") do (
echo PANDOC: %%~nxi
2014-12-22 14:44:09 +01:00
"%PATH_PANDOC%\pandoc.exe" --from markdown_github+pandoc_title_block --to html5 --toc -N --standalone -H "%~dp0\..\Style\style.css" "%%~i" --output "%%~dpni.html"
echo.
if not "!ERRORLEVEL!"=="0" (
"%~dp0\..\Utilities\CEcho.exe" red "\nSomething went wrong^^!\n"
pause && exit
2014-12-22 22:40:20 +01:00
)
)
2014-12-22 14:44:09 +01:00
echo.