notebookx 0.1.8

Fast, lightweight notebook conversion library
Documentation
1
2
3
4
5
6
7
8
//! nbx binary entry point.

use std::process::ExitCode;

fn main() -> ExitCode {
    let code = notebookx::cli::run(std::env::args_os());
    ExitCode::from(code as u8)
}