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
//! Foundation module for markdown widget.
//!
//! Contains core elements, types, events, helpers, and rendering functions.

pub mod elements;
pub mod events;
pub mod functions;
pub mod helpers;
pub mod parser;
pub mod source;
pub mod types;

pub use events::{MarkdownDoubleClickEvent, MarkdownEvent};
pub use functions::{render_markdown, render_markdown_with_style};
pub use types::{GitStats, SelectionPos};