fmtview 0.3.4

Fast CLI viewer for highlighting, search, and diffs across JSON, JSONL, markup, Markdown, TOML, text, and Jinja
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod external;
mod lazy_records;
mod model;
mod stdout;
mod view;

#[cfg(test)]
mod tests;

pub use stdout::diff_sources;

pub(crate) use lazy_records::LazyRecordDiff;
pub(crate) use model::{
    DiffChange, DiffIntensity, DiffLayout, DiffModel, DiffRange, NumberedDiffLine, SideDiffRow,
    UnifiedDiffRow,
};
pub(crate) use view::{DiffView, diff_view};