kode-markdown 0.1.0

Markdown intelligence for the kode editor — parsing, formatting commands, and input rules
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod commands;
mod input_rules;
mod markdown_editor;
mod nodes;
mod parse;

pub use commands::{FormattingState, MarkdownCommands};
pub use input_rules::InputRules;
pub use markdown_editor::MarkdownEditor;
pub use nodes::NodeKind;
pub use parse::{BlockInfo, MarkdownTree, NodeInfo};
pub use parse::{code_block_content, code_block_language};