File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ jupyter nbconvert --to notebook \
9191 --output " $jupyter_notebook_output_file_name " \
9292 --output-dir=" ./" \
9393 --ExecutePreprocessor.timeout=480
94+ echo " executeJupyterNotebook: Sucessfully executed Jupyter Notebook ${jupyter_notebook_output_file_name} ..."
9495
9596# Convert the Jupyter Notebook to Markdown
9697jupyter nbconvert --to markdown --no-input " $jupyter_notebook_output_file "
@@ -100,8 +101,10 @@ jupyter nbconvert --to markdown --no-input "$jupyter_notebook_output_file"
100101# Therefore the temporary file ".nostyle" is created and then moved to overwrite the original markdown file.
101102sed -E ' /<style( scoped)?>/,/<\/style>/d' " ${jupyter_notebook_markdown_file} " > " ${jupyter_notebook_markdown_file} .nostyle"
102103mv -f " ${jupyter_notebook_markdown_file} .nostyle" " ${jupyter_notebook_markdown_file} "
104+ echo " executeJupyterNotebook: Sucessfully created Markdown ${jupyter_notebook_markdown_file} ..."
103105
104106# Convert the Jupyter Notebook to PDF
105107if [ -n " ${ENABLE_JUPYTER_NOTEBOOK_PDF_GENERATION} " ]; then
106108 jupyter nbconvert --to webpdf --no-input --allow-chromium-download --disable-chromium-sandbox " $jupyter_notebook_output_file "
109+ echo " executeJupyterNotebook: Sucessfully created PDF ${jupyter_notebook_output_file} ..."
107110fi
You can’t perform that action at this time.
0 commit comments