mdv 4.2.1

Terminal Markdown Viewer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use assert_cmd::Command;
use predicates::prelude::*;
use std::fs;
use tempfile::NamedTempFile;

#[path = "layout/blockquotes.rs"]
mod blockquotes;
#[path = "layout/headings.rs"]
mod headings;
#[path = "layout/spacing.rs"]
mod spacing;

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