summaryrefslogtreecommitdiff
path: root/src/doc.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-03-08 10:43:03 +0100
committerLaurenz <laurmaedje@gmail.com>2023-03-08 10:44:24 +0100
commit1b2b53ecb91a9bd7fb3493e471ae03cd142a7c03 (patch)
tree682124c2343db9491c84bddbdca026c676f220c6 /src/doc.rs
parent25b5bd117529cd04bb789e1988eb3a3db8025a0e (diff)
Require font to be a named argument
Diffstat (limited to 'src/doc.rs')
-rw-r--r--src/doc.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/doc.rs b/src/doc.rs
index 9ac2f68d..0c01dcd2 100644
--- a/src/doc.rs
+++ b/src/doc.rs
@@ -598,13 +598,15 @@ pub enum Meta {
}
/// Host for metadata.
+///
+/// Display: Meta
+/// Category: special
#[node]
pub struct MetaNode {
/// Metadata that should be attached to all elements affected by this style
/// property.
#[settable]
#[fold]
- #[skip]
#[default]
pub data: Vec<Meta>,
}