3 releases

0.1.2 Apr 10, 2021
0.1.1 Apr 9, 2021
0.1.0 Apr 9, 2021

#15 in #parse-markdown

Download history 3/week @ 2024-01-10 6/week @ 2024-01-17 8/week @ 2024-01-24 7/week @ 2024-01-31 1/week @ 2024-02-14 14/week @ 2024-02-21 16/week @ 2024-02-28 2/week @ 2024-03-06 3/week @ 2024-03-13 20/week @ 2024-03-27 42/week @ 2024-04-03

65 downloads per month

MIT/Apache

18KB
330 lines

Markdown 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.

Start

It is always easy to use this parser.

Just start to read a markdown file and parse it.

use markdown_parser::{
    read_file, Error
};

fn main() -> Result<(), Error> {
    let md = read_file("$PATH.md")?;
    let content = md.content();
    println!("{}", content);
    Ok(())
}

Front Matter

md-parser have 3 format for front matter, which can be confirmed in running time.

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.

Adapt

Sometimes you have to transform your front matter in markdown.

For example, you have this:

---
date: 2020-01-02
title: it is yaml
categories:
  - rust
tags:
  - front-matter
  - md
---

And you need a toml-style front matter for your markdown rendering tasks.

So you have just use feature adapt to use transforming task which will load serde crates.

[dependencies.markdown-parser]
version = "*"
features = ["adapt"]

In fact, this task is quite common so feature adapt is enabled in default.

Now you can change md file like this:

use markdown_parser::*;

fn main() -> Result<(), Error> {
    let origin = read_file("yaml.md")?;
    let md = origin.adapt::<TomlAdapter, BasicObject>()?;
    md.write_file("toml.md")?;
    Ok(())
}

Dependencies

~3.5–5MB
~99K SLoC