summaryrefslogtreecommitdiff
path: root/src/model
diff options
context:
space:
mode:
Diffstat (limited to 'src/model')
-rw-r--r--src/model/content.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/model/content.rs b/src/model/content.rs
index 2af4ae72..189ee23a 100644
--- a/src/model/content.rs
+++ b/src/model/content.rs
@@ -326,6 +326,9 @@ impl Sum for Content {
}
/// A node with applied styles.
+///
+/// Display: Styled
+/// Category: special
#[node]
pub struct StyledNode {
/// The styled content.
@@ -347,6 +350,9 @@ cast_from_value! {
///
/// Combines other arbitrary content. So, when you write `[Hi] + [you]` in
/// Typst, the two text nodes are combined into a single sequence node.
+///
+/// Display: Sequence
+/// Category: special
#[node]
pub struct SequenceNode {
#[variadic]