1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-23 15:43:39 +02:00

Various bug fixed from moving printed parts.

This commit is contained in:
Chris Palmer
2019-06-12 11:21:53 +01:00
parent 09db2f06b0
commit c1e31036eb
10 changed files with 57 additions and 18 deletions

View File

@@ -20,7 +20,7 @@
#
#
#! Makes this document.
#! Makes this document and doc/usage.md.
#
from __future__ import print_function
@@ -63,10 +63,15 @@ They should work with both Python 2 and Python 3.
with open(dir + "/readme.html", "wt") as html_file:
do_cmd(("python -m markdown -x tables " + doc_name).split(), html_file)
with open("docs/usage.html", "wt") as html_file:
do_cmd(("python -m markdown -x tables docs/usage.md").split(), html_file)
#
# Spell check
#
do_cmd(('codespell -L od ' + doc_name).split())
do_cmd(('codespell -L od docs/usage.md').split())
if __name__ == '__main__':
doc_scripts()