update doc maker - PLEASE READ
requirements have changed remove .venv/req_installed before running
This commit is contained in:
parent
2f40de37bb
commit
03252080fd
|
@ -91,7 +91,7 @@ if __name__ == "__main__":
|
||||||
# each file is its own section
|
# each file is its own section
|
||||||
html +='<section id="%s">%s</section>' % (
|
html +='<section id="%s">%s</section>' % (
|
||||||
my_file.replace(os.path.sep, "__"),
|
my_file.replace(os.path.sep, "__"),
|
||||||
markdown.markdown(data, extensions=['nl2br', GithubFlavoredMarkdownExtension()])
|
markdown.markdown(data, extensions=['nl2br', 'mdx_breakless_lists', GithubFlavoredMarkdownExtension()])
|
||||||
)
|
)
|
||||||
|
|
||||||
# build html
|
# build html
|
||||||
|
@ -132,7 +132,7 @@ if __name__ == "__main__":
|
||||||
font-family: 'IBM Plex Mono';
|
font-family: 'IBM Plex Mono';
|
||||||
}
|
}
|
||||||
ul {
|
ul {
|
||||||
padding-left: 4pt;
|
padding-left: 10pt;
|
||||||
margin-right: 4pt;
|
margin-right: 4pt;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
|
@ -209,6 +209,9 @@ if __name__ == "__main__":
|
||||||
pre {
|
pre {
|
||||||
font-size: .8em;
|
font-size: .8em;
|
||||||
}
|
}
|
||||||
|
li > p {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
table {
|
table {
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%%;
|
width: 100%%;
|
||||||
|
|
|
@ -5,6 +5,7 @@ fonttools==4.39.3
|
||||||
html5lib==1.1
|
html5lib==1.1
|
||||||
Markdown==3.4.3
|
Markdown==3.4.3
|
||||||
Pillow==9.4.0
|
Pillow==9.4.0
|
||||||
|
mdx-breakless-lists==1.0.1
|
||||||
py-gfm==2.0.0
|
py-gfm==2.0.0
|
||||||
pycparser==2.21
|
pycparser==2.21
|
||||||
pydyf==0.5.0
|
pydyf==0.5.0
|
||||||
|
|
Loading…
Reference in a new issue