1//! Describes the top-level document structure. 2 3mod attribute; 4pub use attribute::{Attribute, InterpretedValue}; 5 6mod document; 7pub use document::Document; 8 9mod header; 10pub use header::Header;