markdown-that 0.7.1

Rust port of popular markdown-it.js library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Use these to build your own Markdown syntax.
//!
//! Some Markdown structures are very similar under the hood, for example
//!  - `*emphasis*`, `^supertext^` and `~~strikethrough~~`
//!  - `[link]()` and `![image]()`
//!
//! To reuse the code between all those, a notion of generic
//! Markdown structures was created. If you want to use syntax like
//! `=this=` or `++that++`, you only need to specify a character marker
//! and a renderer function; these rules will figure out the rest.
//!
pub mod inline;