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
11
12
13
14
15
16
17
18
//! Rendering methods for MarkdownElement.
//!
//! Each method is responsible for rendering a specific type of markdown element.

pub mod helpers;
pub mod render;
pub mod render_blockquote;
pub mod render_code_block;
pub mod render_expandable;
pub mod render_frontmatter;
pub mod render_heading;
pub mod render_horizontal_rule;
pub mod render_list_item;
pub mod render_paragraph;
pub mod render_table_border;
pub mod render_table_row;

pub use render::{render, render_with_options, RenderOptions};