fmtview 0.4.2

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
mod fixtures;
mod format;
mod load;
mod runner;

#[test]
#[ignore = "performance smoke; run benches/load-performance.sh"]
fn perf_load_suite() {
    runner::run_suite("load", load::CASES);
}

#[test]
#[ignore = "performance smoke; run benches/format-performance.sh"]
fn perf_format_suite() {
    runner::run_suite("transform", format::CASES);
}