ratatui-toolkit 0.2.6

DEPRECATED: this crate was renamed to `ratkit`. Please migrate to `ratkit`.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Markdown parser module.
//!
//! Provides parsing of markdown content into structured elements
//! using pulldown-cmark for parsing.

mod helpers;
mod render_markdown_to_elements;

pub use helpers::{flush_paragraph, parse_frontmatter};
pub use render_markdown_to_elements::render_markdown_to_elements;