Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
375 changes: 290 additions & 85 deletions src/app.rs

Large diffs are not rendered by default.

508 changes: 508 additions & 0 deletions src/document/markdown.rs

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions src/document/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pub mod markdown;
pub mod model;

pub use markdown::MarkdownCodec;
pub use model::{Block, DocLink, DocRange, Document, Inline, TableAlignment, TableCell, TableRow};
Loading