ratkit 0.2.15

A comprehensive collection of reusable TUI components for ratatui including resizable splits, tree views, markdown rendering, toast notifications, dialogs, and terminal embedding
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Viewport renderer for normalized documents.

pub mod document_viewer_widget;
pub mod handle_key;
pub mod handle_mouse;
pub mod render_document_lines;

pub use document_viewer_widget::DocumentViewerWidget;
pub use handle_key::handle_viewer_key;
pub use handle_mouse::handle_viewer_mouse;
pub use render_document_lines::render_document_lines;