diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-05-20 21:36:24 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-05-20 21:36:24 +0200 |
| commit | 1321862cd54eb4abefb5d435285e3de9e0848c4c (patch) | |
| tree | 904d04546da0a17dbf0fe96790c0a9c2f6393141 /library/src/meta/mod.rs | |
| parent | 35b883cfd9e6acfcaee1a98bf2bdd4f6c5de5fbf (diff) | |
Footnotes
Diffstat (limited to 'library/src/meta/mod.rs')
| -rw-r--r-- | library/src/meta/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/library/src/meta/mod.rs b/library/src/meta/mod.rs index 61028bf5..0cbbafff 100644 --- a/library/src/meta/mod.rs +++ b/library/src/meta/mod.rs @@ -5,6 +5,7 @@ mod context; mod counter; mod document; mod figure; +mod footnote; mod heading; mod link; mod numbering; @@ -18,6 +19,7 @@ pub use self::context::*; pub use self::counter::*; pub use self::document::*; pub use self::figure::*; +pub use self::footnote::*; pub use self::heading::*; pub use self::link::*; pub use self::numbering::*; @@ -36,6 +38,7 @@ pub(super) fn define(global: &mut Scope) { global.define("outline", OutlineElem::func()); global.define("heading", HeadingElem::func()); global.define("figure", FigureElem::func()); + global.define("footnote", FootnoteElem::func()); global.define("cite", CiteElem::func()); global.define("bibliography", BibliographyElem::func()); global.define("locate", locate); |
