Socket
Socket
Sign inDemoInstall

ipynb-loader

Package Overview
Dependencies
28
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ipynb-loader

ipython/jupyter notebook files loader for webpack


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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
  • cellsOnly: only return .cell elements instead of returning the entire document (<html></html>)
    • options: true, false
    • default: false

Keywords

FAQs

Last updated on 29 Nov 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc