This file will become your README and also the index of your documentation.
pip install nbdev_hello_world
Here’s how to display SVGs in Notebooks:
from IPython.display import display,SVG
display(SVG('<svg height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40"/></svg>'))
Use nbdev_preview
to launch a live preview of your changes in the
browser.
Use nbdev_prepare
to validate your changes
which bundles the following commands:
nbdev_export
: Builds the .py modules from Jupyter notebooksnbdev_test
: Tests your notebooksnbdev_clean
: Cleans your notebooks to get rid of extreanous output for gitnbdev_readme
: Updates your repo’s README.md file from your index notebook.