0.0.2 • Published 9 years ago
ipynb-loader v0.0.2
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.js
module.exports = {
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.cellelements instead of returning the entire document (<html></html>)- options:
true,false - default:
false
- options: