Regen Documentation

This commit is contained in:
Wayne Warthen
2021-10-22 15:50:55 -07:00
parent 2208441e86
commit d9d95e76dc
12 changed files with 16 additions and 5 deletions

View File

@@ -196,7 +196,7 @@ simpler and more memory efficient to keep everything in RAM. At startup
Runtime Memory Layout
=====================
![Banked Switched Memory Layout](Graphics/BankSwitchedMemory){ width=80% }
![Bank Switched Memory Layout](Graphics/BankSwitchedMemory){ width=80% }
System Boot Process
===================

View File

@@ -39,6 +39,12 @@ echo Processing document %1.md...
gpp -o %1.tmp -U "\\" "" "{" "}{" "}" "{" "}" "#" "" %1.md
:: pandoc %1.tmp -f markdown -s -o %1.tex --default-image-extension=pdf || exit /b
:: pause
:: rem texify --pdf --clean %1.ltx || exit /b
:: texify --pdf %1.tex || exit /b
:: goto :eof
pandoc %1.tmp -f markdown -t pdf -s -o %1.pdf --default-image-extension=pdf || exit /b
pandoc %1.tmp -f markdown -t html -o %1.html --default-image-extension=png || exit /b
pandoc %1.tmp -f markdown -t dokuwiki -o %1.dw --default-image-extension=png || exit /b

View File

@@ -8,3 +8,8 @@ if exist *.html del *.html
if exist *.tex del *.tex
if exist *.pdf del *.pdf
if exist *.tmp del *.tmp
if exist *.aux del *.aux
if exist *.ilg del *.ilg
if exist *.ind del *.ind
if exist *.log del *.log
if exist *.toc del *.toc