mdbook-utils 0.1.3

Tools to manage links, reference definitions, and code examples in Markdown files, especially `mdbook` source directories.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Functions that take a Markdown parser
//! and write (parts of) its contents to a file.
mod github;
mod write_raw_to;
mod write_refdefs;
mod write_whole;

pub(crate) use github::*;
pub(crate) use write_raw_to::*;
pub(crate) use write_refdefs::*;
#[allow(unused_imports)]
pub(crate) use write_whole::*;