#![allow(clippy::too_many_arguments)]
mod document;
mod error;
pub mod paragraph;
pub mod run;
pub mod style;
pub mod table;
pub use document::{
AccessibilityIssue, Document, ImageInfo, IssueSeverity, LinkInfo, ListLevel, ListNumberFormat,
OutlineNode,
};
pub use error::{Error, Result};
pub use oxml_core::Length;
pub use paragraph::{
Alignment, BorderStyle, Paragraph, ParagraphRef, SectionBreak, TabAlignment, TabLeader,
};
pub use run::{Run, RunRef, UnderlineStyle};
pub use style::{Style, StyleBuilder};
pub use table::{Cell, CellRef, Row, RowRef, Table, TableRef, VerticalAlignment};
#[cfg(test)]
mod tests {
use super::Length;
#[test]
fn public_length_is_the_shared_type() {
let _: oxml_core::Length = Length::emu(1);
}
}