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