Skip to content

Commit

Permalink
fix : Distance.ipynb section added to doc_to_html.bat (#478)
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi authored Jan 15, 2023
1 parent 7b91fa6 commit f4ca413
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Otherfiles/doc_to_html.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ move Document.html index.html
if ERRORLEVEL 1 (echo Document.ipynb Failed! & cd .. & exit /b 0) else (echo Document.ipynb Done!)
echo --------------------------
del Document.ipynb
echo Distance.ipynb is running!
call python -m nbconvert --to html_toc --execute Distance.ipynb --no-prompt --TagRemovePreprocessor.enabled=True --TagRemovePreprocessor.remove_cell_tags={\"html_hide\"} --log-level=ERROR
if ERRORLEVEL 1 (echo Distance.ipynb Failed! & cd .. & exit /b 0) else (echo Distance.ipynb Done!)
echo --------------------------
del Distance.ipynb
for %%f in (*.ipynb) do (
echo %%f is running!
call python -m nbconvert --to html --execute %%f --no-prompt --log-level=ERROR
Expand Down

0 comments on commit f4ca413

Please sign in to comment.