ElixirNote Nbc

Elixir Notebook Convert

TOC

Introduction

The nbconvertarrow-up-right tool, elixir nbconvert, converts notebooks to various other formats via Jinja templates. The nbconvert tool allows you to convert an .ipynb notebook file into various static formats including:

  • HTML

  • LaTeX

  • PDF

  • Reveal JS

  • Markdown (md)

  • ReStructured Text (rst)

  • executable script

Installation

Usage

From the command line, use nbconvert to convert a Elixir notebook (input) to a a different format (output). The basic command structure is:

where <output format> is the desired output format and <input notebook> is the filename of the Jupyter notebook.

Convert Jupyter notebook file, sample.ipynb, to HTML using:

This command creates an HTML output file named mynotebook.html.

Examples

Example 01

Example 02

Last updated