wikitext_parser/
lib.rs

1//! Parse wikitext into a semantic representation.
2
3#![warn(missing_docs)]
4
5mod error;
6mod level_stack;
7mod parser;
8#[cfg(test)]
9mod tests;
10mod tokenizer;
11mod wikitext;
12
13pub use error::{ParserError, ParserErrorKind};
14pub use parser::parse_wikitext;
15pub use tokenizer::TextPosition;
16pub use wikitext::{Attribute, Headline, Section, Text, TextFormatting, TextPiece, Wikitext};