ElixirNote Nbc
Elixir Notebook Convert
Last updated
Elixir Notebook Convert
Last updated
The 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
Reveal JS
Markdown (md)
ReStructured Text (rst)
executable script
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
.