diff options
Diffstat (limited to 'library/src/structure/mod.rs')
| -rw-r--r-- | library/src/structure/mod.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/library/src/structure/mod.rs b/library/src/structure/mod.rs new file mode 100644 index 00000000..088d1e6c --- /dev/null +++ b/library/src/structure/mod.rs @@ -0,0 +1,13 @@ +//! Document structuring. + +mod doc; +mod heading; +mod list; +mod reference; +mod table; + +pub use doc::*; +pub use heading::*; +pub use list::*; +pub use reference::*; +pub use table::*; |
