ipynb-loader
IPython/Jupyter notebook loader for webpack.
Requirements
ipynb-loader requires jupyter to be installed (jupyter installation page).
Make sure that jupyter
is available in your $PATH
.
Usage
Like any other webpack loader:
// webpack.config.jsmoduleexports = module: loaders: test: /\.ipynb$/ exclude: /node_modules/ loader: 'ipynb?cellsOnly=true'
Query options
to
: export format- options:
custom
,html
,latex
,markdown
,notebook
,pdf
,python
,rst
,script
,slides
- default:
html
- options:
cellsOnly
: only return.cell
elements instead of returning the entire document (<html></html>
)- options:
true
,false
- default:
false
- options: