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;
8pub(crate) use attrlist::AttrlistContext;
9
10pub(crate) mod element_attribute;
11pub use element_attribute::ElementAttribute;