more doc updates
This commit is contained in:
parent
7d8901539c
commit
6e3cc1c3bd
12 changed files with 774 additions and 154 deletions
14
make_docs.sh
14
make_docs.sh
|
|
@ -1,3 +1,15 @@
|
|||
#!/bin/bash
|
||||
cd ~/projects/meanas
|
||||
pdoc3 --html --force --template-dir pdoc_templates -o doc .
|
||||
|
||||
# Approach 1: pdf to html?
|
||||
#pdoc3 --pdf --force --template-dir pdoc_templates -o doc . | \
|
||||
# pandoc --metadata=title:"meanas" --toc --toc-depth=4 --from=markdown+abbreviations --to=html --output=doc.html --gladtex -s -
|
||||
|
||||
# Approach 2: pdf to html with gladtex
|
||||
pdoc3 --pdf --force --template-dir pdoc_templates -o doc . > doc.md
|
||||
pandoc --metadata=title:"meanas" --from=markdown+abbreviations --to=html --output=doc.html --gladtex -s --css pdoc_templates/pdoc.css doc.md
|
||||
gladtex -a -n -d _doc_mathimg -c white doc.html
|
||||
|
||||
# Approach 3: html with gladtex
|
||||
#pdoc3 --html --force --template-dir pdoc_templates -o doc .
|
||||
#find doc -iname '*.html' -exec gladtex -a -n -d _mathimg -c white {} \;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue