Update dependency

This commit is contained in:
yhirose
2026-03-01 23:55:52 -05:00
parent 843ad379c7
commit fdb589d97e
3 changed files with 13 additions and 19 deletions

View File

@@ -42,7 +42,7 @@ impl MarkdownRenderer {
let yaml = &after_first[..end];
let body = &after_first[end + 4..];
let fm: Frontmatter =
serde_yml::from_str(yaml).context("Failed to parse frontmatter YAML")?;
serde_yaml::from_str(yaml).context("Failed to parse frontmatter YAML")?;
Ok((fm, body))
}