fiberplane_markdown/lib.rs
1/*!
2# Fiberplane Markdown Conversion
3
4> Convert Fiberplane notebooks to and from Markdown
5
6## Unsupported Features
7
8### Markdown to Notebook
9
10- Images
11- Block quotes (uses text cells instead)
12- Headings level 4-6
13- Tables
14- Footnotes
15
16### Notebook to Markdown
17
18- Images
19- Code-formatting or highlighted text that _also_ has other formatting applied
20 (e.g. bold inside inline code)
21- Underlined text (uses italics instead)
22- Graphs
23- Tables
24- Logs
25- Discussions
26
27*/
28
29mod from_markdown;
30mod to_markdown;
31
32pub use from_markdown::{markdown_to_cells, markdown_to_notebook};
33pub use to_markdown::{cells_to_markdown, notebook_to_markdown};