1 个不稳定版本

0.1.0 2023年1月6日

#32 in #front-matter

MIT/Apache

7KB

toml-frontmatter

TOML 前置解析器。

API

有关文档,请参阅 docs.rs

示例

#[derive(serde::Deserialize)]
struct Frontmatter {
  date: String,
}

let sample = r#"
---toml
date = "2023-01-01"
---

Some **Markdown**. Or something else!
"#.trim();

let (frontmatter, markdown) = toml_frontmatter::parse::<Frontmatter>(sample).unwrap();

许可证

Apache License 2.0MIT 许可证下分发,有关更多信息,请参阅 LICENSE-ApacheLICENSE-MIT


lib.rs:

toml-frontmatter

TOML 前置解析器。

请参阅 parse 文档以获取示例。

许可证

Apache License 2.0MIT 许可证下分发,有关更多信息,请参阅 LICENSE-ApacheLICENSE-MIT

依赖项

~0.6–1.3MB
~28K SLoC