asciidoc-parser 0.19.0

Parser for AsciiDoc format
Documentation
//! Describes the top-level document structure.

mod attribute;
pub use attribute::{Attribute, InterpretedValue};

mod author;
pub use author::Author;

mod author_line;
pub use author_line::AuthorLine;

mod catalog;
#[allow(unused)] // TEMPORARY while building
pub(crate) use catalog::DuplicateIdError;
pub use catalog::{Catalog, Footnote, RefEntry, RefType};

mod docinfo;
pub(crate) use docinfo::Docinfo;
pub use docinfo::DocinfoLocation;

mod document;
pub use document::Document;

mod header;
pub use header::Header;

mod revision_line;
pub use revision_line::RevisionLine;

mod toc;
pub(crate) use toc::TocConfig;
pub use toc::TocMode;