asciidoc-parser 0.19.0

Parser for AsciiDoc format
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Element attributes are a powerful means of controlling the built-in settings
//! of individual block and inline elements in the AsciiDoc syntax. They can
//! also be used to add supplemental information, such as citation metadata and
//! fallback content, to certain elements.

mod attrlist;
pub use attrlist::Attrlist;
pub(crate) use attrlist::AttrlistContext;

pub(crate) mod element_attribute;
pub use element_attribute::ElementAttribute;