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 include_file_handler;
9pub use include_file_handler::IncludeFileHandler;
10
11mod inline_substitution_renderer;
12pub use inline_substitution_renderer::{
13    CharacterReplacementType, HtmlSubstitutionRenderer, IconRenderParams, ImageRenderParams,
14    InlineSubstitutionRenderer, LinkRenderParams, LinkRenderType, QuoteScope, QuoteType,
15    SpecialCharacter,
16};
17
18mod parser;
19pub use parser::Parser;
20
21mod path_resolver;
22pub use path_resolver::PathResolver;
23
24pub(crate) mod preprocessor;
25
26mod source_map;
27pub use source_map::{SourceLine, SourceMap};