mant-ir 0.11.0

Normalized, source-neutral document intermediate representation for ManT
Documentation
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]

mod address;
mod content_location;
mod declaration;
mod document;
mod entry;
pub mod geometry;
mod heading;
mod identity;
mod index;
mod inline_text;
mod link_uri;
mod outline;
mod references;
mod resolved;
mod table;
mod text_coordinates;
mod tldr;
mod validation;
pub mod visit;

pub use address::*;
pub use content_location::*;
pub use declaration::*;
pub use document::*;
pub use entry::*;
pub use heading::*;
pub use identity::*;
pub use index::*;
pub use inline_text::*;
pub use link_uri::markdown_document_reference;
pub use outline::*;
pub use references::*;
pub use resolved::*;
pub use table::*;
pub use text_coordinates::*;
pub use tldr::*;
pub use validation::*;