If a user tries to render an ipynb file to html with this sphinx command:
sphinx-build -N -v -b html . _build
the jupyter_execute folder is created in _build's parent folder, and subsequent builds produce recursive copies of the contents.
Fix(?) -- error out and tell user to do
sphinx-build -N -v -b html . _build/html
or create the html directory and an information message.
If a user tries to render an ipynb file to html with this sphinx command:
sphinx-build -N -v -b html . _buildthe
jupyter_executefolder is created in _build's parent folder, and subsequent builds produce recursive copies of the contents.Fix(?) -- error out and tell user to do
sphinx-build -N -v -b html . _build/htmlor create the html directory and an information message.