ratatui-markdown 0.3.2

Markdown rendering, syntax highlighting, collapsible trees, and rich scroll widgets for ratatui
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod focusable_list;
pub mod follow_scroll;
pub mod hybrid_scroll;
pub mod scrollable_list;
pub mod scrollable_panel;
pub mod scrollbar;
pub mod span_tree;

pub use focusable_list::{FocusableItemLines, FocusableItemList};
pub use follow_scroll::FollowScrollState;
pub use hybrid_scroll::{FocusableItemRange, FocusableRegion, HybridScrollView};
pub use scrollable_list::{ListItemRenderer, RenderParams, ScrollableList};
pub use scrollable_panel::{render_scrollable, ScrollableRenderResult};
pub use scrollbar::{anchored_panel_scrollbar_area, render_arrow_scrollbar, ArrowScrollbar};
pub use span_tree::{CursorLineMode, SpanTree, SpanTreeEntry};