mirror of
https://github.com/wassname/jupyter_contrib_nbextensions.git
synced 2026-06-27 16:10:24 +08:00
8 lines
330 B
Python
8 lines
330 B
Python
c = get_config()
|
|
|
|
#Export all the notebooks in the current directory to the sphinx_howto format.
|
|
c.NbConvertApp.notebooks = ['*.ipynb']
|
|
c.NbConvertApp.export_format = 'slides'
|
|
c.Exporter.template_file = 'hierarchical_collapse.tpl'
|
|
c.Exporter.preprocessors = ['hierarchical_collapse_preprocessor.HierarchicalCollapsePreprocessor']
|