Jupyter notebook – Export to HTML
A typical command to export a jupyter notebook to html:
jupyter nbconvert my-notebook.ipynb --to html --no-input --no-prompt --output my-notebook-html
--to html
– the output format--no-input
– without the python code--no-prompt
– remove the prompts from the output--output
– an optional name for the html generated file