4 个版本
0.1.3 | 2022年9月9日 |
---|---|
0.1.2 | 2022年9月9日 |
0.1.1 | 2022年3月18日 |
0.1.0 | 2022年3月18日 |
#12 in #parse-markdown
用于 2 crates
8KB
142 行
Markdown 元数据解析器
解析 Markdown 元数据
---
title: Hello World
author: mrxiaozhuox<[email protected]>
tags: [post, test]
released: false
---
# This is my first post!
Hello World!!
let content = String::from("....");
let mut type_mark = HashMap::new();
type_mark.insert("tags".into(), "array");
type_mark.insert("released".into(), "bool");
let meta = MetaData {
content,
required: vec!["title".to_string()],
type_mark,
}
println!("{:#?}", meta.parse().unwrap());
(
{
"author": String(
"mrxiaozhuox<[email protected]>",
),
"tags": Array(
[
"post",
"test",
],
),
"released": Bool(
false,
),
"title": String(
"Hello World",
),
},
"\n# This is my first post!\n\nHello World!!\n",
),
依赖项
~130KB