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
|
||||
html +='<section id="%s">%s</section>' % (
|
||||
my_file.replace(os.path.sep, "__"),
|
||||
markdown.markdown(data, extensions=['nl2br', GithubFlavoredMarkdownExtension()])
|
||||
markdown.markdown(data, extensions=['nl2br', 'mdx_breakless_lists', GithubFlavoredMarkdownExtension()])
|
||||
)
|
||||
|
||||
# build html
|
||||
|
@ -132,7 +132,7 @@ if __name__ == "__main__":
|
|||
font-family: 'IBM Plex Mono';
|
||||
}
|
||||
ul {
|
||||
padding-left: 4pt;
|
||||
padding-left: 10pt;
|
||||
margin-right: 4pt;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
@ -209,6 +209,9 @@ if __name__ == "__main__":
|
|||
pre {
|
||||
font-size: .8em;
|
||||
}
|
||||
li > p {
|
||||
display: inline;
|
||||
}
|
||||
table {
|
||||
display: block;
|
||||
width: 100%%;
|
||||
|
|
|
@ -5,6 +5,7 @@ fonttools==4.39.3
|
|||
html5lib==1.1
|
||||
Markdown==3.4.3
|
||||
Pillow==9.4.0
|
||||
mdx-breakless-lists==1.0.1
|
||||
py-gfm==2.0.0
|
||||
pycparser==2.21
|
||||
pydyf==0.5.0
|
||||
|
|
Loading…
Reference in a new issue