1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-12-18 00:18:28 +02:00

increase heading size

This commit is contained in:
Kelly Brazil
2022-01-25 19:28:37 -08:00
parent 3cfb3965bb
commit 7cc147fe2d
2 changed files with 4 additions and 44 deletions

View File

@@ -5,15 +5,19 @@
cd jc
echo Building docs for: package
pydoc-markdown -m jc '{"processors":[{"type":"filter","expression":"not name ==\"info\" and default()"},{"type":"pydocmd"}]}' > ../docs/readme.md
sed -i "" 's/^#### /### /g' ../docs/readme.md
echo Building docs for: lib
pydoc-markdown -m jc.lib '{"processors":[{"type":"filter","expression":"not name ==\"info\" and default()"},{"type":"pydocmd"}]}' > ../docs/lib.md
sed -i "" 's/^#### /### /g' ../docs/lib.md
echo Building docs for: utils
pydoc-markdown -m jc.utils '{"processors":[{"type":"filter","expression":"not name ==\"info\" and default()"},{"type":"pydocmd"}]}' > ../docs/utils.md
sed -i "" 's/^#### /### /g' ../docs/utils.md
echo Building docs for: universal parser
pydoc-markdown -m jc.parsers.universal '{"processors":[{"type":"filter","expression":"not name ==\"info\" and default()"},{"type":"pydocmd"}]}' > ../docs/parsers/universal.md
sed -i "" 's/^#### /### /g' ../docs/parsers/universal.md
# a bit of inception here... jc is being used to help
# automate the generation of its own documentation. :)