diff options
Diffstat (limited to 'library/src/meta')
| -rw-r--r-- | library/src/meta/document.rs | 2 | ||||
| -rw-r--r-- | library/src/meta/link.rs | 2 | ||||
| -rw-r--r-- | library/src/meta/outline.rs | 2 | ||||
| -rw-r--r-- | library/src/meta/reference.rs | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/library/src/meta/document.rs b/library/src/meta/document.rs index 1dae4a2a..8c664df3 100644 --- a/library/src/meta/document.rs +++ b/library/src/meta/document.rs @@ -2,6 +2,8 @@ use crate::layout::{LayoutRoot, PageNode}; use crate::prelude::*; /// The root node that represents a full document. +/// +/// Tags: meta. #[func] #[capable(LayoutRoot)] #[derive(Hash)] diff --git a/library/src/meta/link.rs b/library/src/meta/link.rs index 94328b00..6f5d8af1 100644 --- a/library/src/meta/link.rs +++ b/library/src/meta/link.rs @@ -2,6 +2,8 @@ use crate::prelude::*; use crate::text::TextNode; /// Link text and other elements to a destination. +/// +/// Tags: meta. #[func] #[capable(Show, Finalize)] #[derive(Debug, Hash)] diff --git a/library/src/meta/outline.rs b/library/src/meta/outline.rs index d0fbc3f7..27ca5944 100644 --- a/library/src/meta/outline.rs +++ b/library/src/meta/outline.rs @@ -4,6 +4,8 @@ use crate::prelude::*; use crate::text::{LinebreakNode, SpaceNode, TextNode}; /// A section outline (table of contents). +/// +/// Tags: meta. #[func] #[capable(Prepare, Show)] #[derive(Debug, Hash)] diff --git a/library/src/meta/reference.rs b/library/src/meta/reference.rs index 657e5ef7..378d19d2 100644 --- a/library/src/meta/reference.rs +++ b/library/src/meta/reference.rs @@ -2,6 +2,8 @@ use crate::prelude::*; use crate::text::TextNode; /// A reference to a label. +/// +/// Tags: meta. #[func] #[capable(Show)] #[derive(Debug, Hash)] |
