ElixirNote Nbc
Elixir Notebook Convert
TOC
Introduction
The nbconvert 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
pip instal elixir-nbcUsage
From the command line, use nbconvert to convert a Elixir notebook (input) to a a different format (output). The basic command structure is:
elixir-nbconvert --to <output format> <input notebook>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:
elixir-nbconvert --to html sample.ipynbThis command creates an HTML output file named mynotebook.html.
Examples
Example 01
Example 02
Last updated