asciidoc_parser/parser/
mod.rs

1//! The [`Parser`] struct and its related structs allow a caller to configure
2//! how AsciiDoc parsing occurs and then to initiate the parsing process.
3
4mod attribute_value;
5pub(crate) use attribute_value::AttributeValue;
6pub use attribute_value::{AllowableValue, ModificationContext};
7
8mod inline_substitution_renderer;
9pub use inline_substitution_renderer::{
10    CharacterReplacementType, HtmlSubstitutionRenderer, IconRenderParams, ImageRenderParams,
11    InlineSubstitutionRenderer, LinkRenderParams, LinkRenderType, QuoteScope, QuoteType,
12    SpecialCharacter,
13};
14
15mod parser;
16pub use parser::Parser;
17
18mod path_resolver;
19pub use path_resolver::PathResolver;