mdq 0.10.0

Select and render specific elements in a Markdown document
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Parsed Markdown nodes (and how to parse them).
//!
//! This module provides the AST for a parsed Markdown document. Its main entry point is [`MdDoc::parse`].
mod tree;
mod tree_ref;

pub use tree::*;

mod concatenate;
mod flat_inlines;
pub(crate) mod inline_regex_replace;
#[cfg(test)]
pub(crate) mod tree_test_utils;

#[cfg(test)]
pub(crate) use tree_test_utils::*;