diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-03-15 10:09:17 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-03-15 10:09:17 +0100 |
| commit | 85678118086b29b3820813411cf382fa283b39f0 (patch) | |
| tree | 93c27f351515f462c2ebbe294103e2a9391a132e /src/doc.rs | |
| parent | 89f44f220de2972452dd816fe59836ba76953d59 (diff) | |
Simplify stable id handling
Diffstat (limited to 'src/doc.rs')
| -rw-r--r-- | src/doc.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ use crate::geom::{ Numeric, Paint, Point, Rel, RgbaColor, Shape, Sides, Size, Stroke, Transform, }; use crate::image::Image; -use crate::model::{node, Content, Fold, StableId, StyleChain}; +use crate::model::{node, Content, Fold, StyleChain}; use crate::syntax::Span; /// A finished document with metadata and page frames. @@ -597,7 +597,7 @@ pub enum Meta { Link(Destination), /// An identifiable piece of content that produces something within the /// area this metadata is attached to. - Node(StableId, Content), + Node(Content), /// Indicates that the content is hidden. Hidden, } |
