ublx 0.2.0

TUI to index once, enrich with metadata, and browse a flat snapshot in a 3-pane layout with multiple modes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Format file content by type for the viewer (markdown, csv, image, json, etc.).

pub mod async_tools;
pub mod csv_handler;
pub mod html_escape;
pub mod images;
pub mod markdown;
pub mod pdf_preview;
pub mod pretty_tables;
pub mod svg_preview;
pub mod syntect_text;
pub mod video_preview;

pub use html_escape::html_escape_minimal;

#[cfg(test)]
mod tests;