asciidoc_parser/content/
mod.rs

1//! Describes the content of a non-compound block after any relevant
2//! [substitutions] have been performed.
3//!
4//! [substitutions]: https://docs.asciidoctor.org/asciidoc/latest/subs/
5
6mod content;
7pub use content::Content;
8
9mod macros;
10
11pub(crate) mod passthroughs;
12pub(crate) use passthroughs::Passthroughs;
13
14mod substitution_group;
15pub use substitution_group::SubstitutionGroup;
16
17mod substitution_step;
18pub use substitution_step::SubstitutionStep;