summaryrefslogtreecommitdiff
path: root/src/library/structure/mod.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-08-30 15:00:18 +0200
committerLaurenz <laurmaedje@gmail.com>2022-09-07 11:07:17 +0200
commit0d12f2ab23177642eef2e6bb9c583cdd0c743b33 (patch)
tree03a88594081dcf360d0d880167feb1debca970e6 /src/library/structure/mod.rs
parent0cb876ebf9138c1ee3b3c87165952a73569ffb28 (diff)
[WIP] Label and reference syntax
Diffstat (limited to 'src/library/structure/mod.rs')
-rw-r--r--src/library/structure/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/library/structure/mod.rs b/src/library/structure/mod.rs
index a597211e..088d1e6c 100644
--- a/src/library/structure/mod.rs
+++ b/src/library/structure/mod.rs
@@ -3,9 +3,11 @@
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::*;