2014-12-21 18:38:47 +01:00
|
|
|
@echo off
|
2014-12-22 14:44:09 +01:00
|
|
|
setlocal EnableDelayedExpansion
|
|
|
|
|
2014-12-23 00:23:41 +01:00
|
|
|
"%~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
|
|
|
|
:: ------------------------------------------
|
|
|
|
|
2014-12-21 18:38:47 +01:00
|
|
|
for %%i in ("%~dp0\..\..\doc\*.md") do (
|
|
|
|
echo PANDOC: %%~nxi
|
2015-01-06 22:48:29 +01:00
|
|
|
"%PATH_PANDOC%\pandoc.exe" --from markdown_github+pandoc_title_block+header_attributes --to html5 --toc -N --standalone -H "%~dp0\..\Style\style.css" "%%~i" --output "%%~dpni.html"
|
2014-12-22 23:38:23 +01:00
|
|
|
if not "!ERRORLEVEL!"=="0" (
|
2014-12-23 00:23:41 +01:00
|
|
|
"%~dp0\..\Utilities\CEcho.exe" red "\nSomething went wrong^^!\n"
|
|
|
|
pause && exit
|
2014-12-22 22:40:20 +01:00
|
|
|
)
|
2014-12-21 18:38:47 +01:00
|
|
|
)
|
2014-12-22 14:44:09 +01:00
|
|
|
|
|
|
|
echo.
|