asciidoc_parser/attributes/mod.rs
1//! Element attributes are a powerful means of controlling the built-in settings
2//! of individual block and inline elements in the AsciiDoc syntax. They can
3//! also be used to add supplemental information, such as citation metadata and
4//! fallback content, to certain elements.
5
6mod attrlist;
7pub use attrlist::Attrlist;
8
9pub(crate) mod element_attribute;
10pub use element_attribute::ElementAttribute;