fmtview 0.4.0

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 model;
mod record_stream;
mod stdout;
mod view;

#[cfg(test)]
mod tests;

pub use stdout::diff_sources;

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