mdv 4.2.0

Terminal Markdown Viewer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use assert_cmd::Command;
use mdv::utils::strip_ansi;
use std::fs;
use tempfile::NamedTempFile;

#[path = "footnotes/attached.rs"]
mod attached;
#[path = "footnotes/ordering.rs"]
mod ordering;
#[path = "footnotes/placement.rs"]
mod placement;
#[path = "footnotes/validation.rs"]
mod validation;

fn mdv_cmd() -> Command {
    Command::new(assert_cmd::cargo::cargo_bin!("mdv"))
}