Skip to content
Snippets Groups Projects
Commit 88a315da authored by mathias.chouet's avatar mathias.chouet
Browse files

Remove debug print

parent 91d9f1cf
No related branches found
No related tags found
1 merge request!74Resolve "Générer la documentation en PDF"
......@@ -176,14 +176,12 @@ def buildDocForLang(lang):
# Read config
yamlPath = 'mkdocs-' + lang + '.yml'
print("yamlPath: " + yamlPath)
dMkdocsYaml = readConfig(yamlPath)
# Create string with merged MarkDown
s = exploreAndMerge(dMkdocsYaml['docs_dir'], dMkdocsYaml['nav'])
# Save the merged .md file
mergedDocFilename = mergedDocFilenamePrefix + lang
print("filename: " + mergedDocFilename)
mergedDocOutputPath = os.path.join(buildDir, mergedDocFilename)
with open('{}.md'.format(mergedDocOutputPath), 'w') as f:
f.writelines(s)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment