diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-07-26 23:24:50 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-07-26 23:27:44 +0200 |
| commit | fc574b39454aec77cf2c33270566225917c7c823 (patch) | |
| tree | ccebc217ce9f869bb0078753a7749789d77db551 /src/library/layout | |
| parent | 1e9a5eda48c65096b482b396d550d139a4c2e61d (diff) | |
New `Str` type with methods
Diffstat (limited to 'src/library/layout')
| -rw-r--r-- | src/library/layout/page.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/layout/page.rs b/src/library/layout/page.rs index 0a7c7579..afcc4855 100644 --- a/src/library/layout/page.rs +++ b/src/library/layout/page.rs @@ -198,7 +198,7 @@ impl Cast<Spanned<Value>> for Marginal { fn cast(value: Spanned<Value>) -> StrResult<Self> { match value.v { Value::None => Ok(Self::None), - Value::Str(v) => Ok(Self::Content(Content::Text(v))), + Value::Str(v) => Ok(Self::Content(Content::Text(v.into()))), Value::Content(v) => Ok(Self::Content(v)), Value::Func(v) => Ok(Self::Func(v, value.span)), v => Err(format!( |
