diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-03-08 10:43:03 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-03-08 10:44:24 +0100 |
| commit | 1b2b53ecb91a9bd7fb3493e471ae03cd142a7c03 (patch) | |
| tree | 682124c2343db9491c84bddbdca026c676f220c6 /library/src/layout/par.rs | |
| parent | 25b5bd117529cd04bb789e1988eb3a3db8025a0e (diff) | |
Require font to be a named argument
Diffstat (limited to 'library/src/layout/par.rs')
| -rw-r--r-- | library/src/layout/par.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/src/layout/par.rs b/library/src/layout/par.rs index 1b554d62..a55b2dc3 100644 --- a/library/src/layout/par.rs +++ b/library/src/layout/par.rs @@ -45,6 +45,7 @@ use crate::text::{ pub struct ParNode { /// The paragraph's children. #[variadic] + #[skip] pub children: Vec<Content>, /// The indent the first line of a consecutive paragraph should have. |
