docs: spelling fixes (#2828)

This commit is contained in:
ckielstra
2021-11-23 10:50:18 +01:00
committed by GitHub
parent a2b555e096
commit b911b72f4b
17 changed files with 27 additions and 27 deletions

View File

@@ -64,17 +64,17 @@ cmd("cd ../scripts && doxygen Doxyfile")
# BUILD PDF
if not skip_latex:
# Silly workarond to include the more or less correct PDF download link in the PDF
# Silly workaround to include the more or less correct PDF download link in the PDF
#cmd("cp -f " + lang +"/latex/LVGL.pdf LVGL.pdf | true")
cmd("sphinx-build -b latex . out_latex")
# Generate PDF
cmd("cd out_latex && latexmk -pdf 'LVGL.tex'")
# Copy the result PDF to the main directory to make it avaiable for the HTML build
# Copy the result PDF to the main directory to make it available for the HTML build
cmd("cd out_latex && cp -f LVGL.pdf ../LVGL.pdf")
else:
print("skipping latex build as requested")
# BULD HTML
# BUILD HTML
cmd("sphinx-build -b html . ../out_html")