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
//! Markdown (inline or reference-style) [links][Link], and
//! Rules to create a reference label and/or a badge URL
//! from a link URL
mod link_and_linkbuilder;
mod rules;
mod write_to_file;

pub(crate) use link_and_linkbuilder::*;
pub(crate) use rules::*;
pub(crate) use write_to_file::*;