markdown-parser 0.1.0

😎 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.
Documentation
# md-parser


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.

# Front Matter


`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]("https://docs.rs/markdown-parser/") to see more about crate.