ElixirNote
GitHubBlogs
  • Welcome to ElixirNote!
  • Guides
    • Get started
    • Installation
      • Install From PyPI
      • Install From Source
    • Interface overview
    • Working with files
    • Text Editor
    • Notebooks
    • Terminals
    • Command palette
    • File & output formats
    • Extensions
      • Installing Extensions
      • Developer Guide
    • Built-in Services
      • ElixirNote Server
      • ElixirNote Hub
      • ElixirNote Shim
      • ElixirNote Nbc
      • ElixirNote Lab Server
    • Real-time Collaboration
    • APIs
  • Ecosystem
    • Integrations
      • GitHub
      • MinIO
      • PostgreSQL
      • MySQL
    • Ecosystem
  • Solutions
    • Solutions
  • Appendix
    • Contribute
    • FAQs
Powered by GitBook
On this page
  • TOC
  • Introduction
  • Installation
  • Usage
  • Examples
  • Example 01
  • Example 02
  1. Guides
  2. Built-in Services

ElixirNote Nbc

Elixir Notebook Convert

PreviousElixirNote ShimNextElixirNote Lab Server

Last updated 2 years ago

TOC

Introduction

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

  • PDF

  • Reveal JS

  • Markdown (md)

  • ReStructured Text (rst)

  • executable script

Installation

pip instal elixir-nbc

Usage

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.ipynb

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

Examples

Example 01

Example 02

nbconvert
Introduction
Installation
Usage
Examples