1
0
Fork 0

Added script to generate README file.

This commit is contained in:
LoRd_MuldeR 2022-11-29 18:10:04 +01:00
parent dfce864f16
commit f431a0731a
2 changed files with 14 additions and 0 deletions

1
etc/style/gh-pandoc.min.css vendored Normal file

File diff suppressed because one or more lines are too long

13
mk-docs.cmd Normal file
View File

@ -0,0 +1,13 @@
@echo off
cd /d "%~dp0"
if "%PANDODC_PATH%"=="" (
set "PANDODC_PATH=c:\Program Files (x86)\Pandoc"
)
echo on
"%PANDODC_PATH%\pandoc.exe" -o "%CD%\README.html" --self-contained --metadata title="LibHashSet" --toc --toc-depth=3 --css etc\style\gh-pandoc.min.css "%CD%\README.md"
@echo off
echo.
pause