edita/
lib.rs

1mod commands;
2mod editor;
3mod nodes;
4
5mod state;
6
7pub use edita_core as core;
8
9pub use crate::commands::bold::MakeBold;
10pub use crate::editor::EditorExt;
11pub use crate::nodes::*;
12pub use crate::state::EditorState;
13
14// # Blocks
15//
16// BulletList x
17// CodeBlock
18// DetailsContent
19// DetailsSummary
20// Emoji
21// Hardbreak
22// HR
23// Image x
24// Heading x
25// ListItem x
26// OrderedList x
27// Paragraph x
28// Table
29// TableRow
30// TableCell
31// TableHeader
32// TaskList x
33// TaskItem x
34// Text x