This a crate that can parse a markdown file.
Especially when you have front matters in your markdown file, this would help you to parse them.
md-parser
have 3 format for front matter
, which can be confirmed in running time.
rust
enum Format {
JSON,
YAML,
TOML,
}
These formats are the most popular format for front matters, if you are not included, maybe you need to do parsing work by yourself ðŸ˜.
you can goto documentation to see more about crate.