mdxbook 0.4.25

Fork of mdBook, with more customizations and flexibility for programmers
Documentation
1
2
3
4
5
6
7
use assert_cmd::Command;

pub(crate) fn mdxbook_cmd() -> Command {
    let mut cmd = Command::cargo_bin("mdxbook").unwrap();
    cmd.env_remove("RUST_LOG");
    cmd
}