asciidoc_parser/attributes/
mod.rs

1
2
3
4
5
6
7
8
9
10
//! 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;

mod element_attribute;
pub use element_attribute::ElementAttribute;