1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! notebookx - Fast, lightweight notebook conversion library
//!
//! This library provides a unified representation for Jupyter notebooks
//! and supports conversion between different notebook formats.
//!
//! # Example
//!
//! ```
//! use notebookx::{Notebook, Cell, NotebookFormat};
//!
//! // Create a notebook programmatically
//! let mut notebook = Notebook::new();
//! notebook.cells.push(Cell::markdown("# Hello World"));
//! notebook.cells.push(Cell::code("print('Hello!')"));
//!
//! // Serialize to ipynb format
//! let json = NotebookFormat::Ipynb.serialize(¬ebook).unwrap();
//! ```
pub use ;
pub use CleanOptions;
pub use ;
pub use NotebookFormat;
pub use ;
pub use Notebook;
pub use ;