7 releases (breaking)

0.6.0 Aug 24, 2024
0.5.0 Jun 26, 2024
0.4.0 Mar 31, 2024
0.3.0 Aug 11, 2023
0.1.1 Aug 2, 2020

#218 in Text processing

Download history 4/week @ 2024-08-17 134/week @ 2024-08-24 5/week @ 2024-08-31 12/week @ 2024-09-14 17/week @ 2024-09-21 14/week @ 2024-09-28

440 downloads per month
Used in 2 crates

MIT/Apache

18KB
301 lines

pulldown-cmark-toc

Crates.io Docs.rs Build Status

Generate a table of contents from a Markdown document. By default the heading anchor calculation (aka the "slugification") is done in a way that attempts to mimic GitHub's (undocumented) behavior.

Getting started

Add the pulldown-cmark-toc to your Cargo.toml.

cargo add pulldown-cmark-toc

Usage

use pulldown_cmark_toc::TableOfContents;

let text = r#"
# Heading

## Subheading

## Subheading with `code`
"#;

let toc = TableOfContents::new(text);
assert_eq!(
    toc.to_cmark(),
    r#"- [Heading](#heading)
  - [Subheading](#subheading)
  - [Subheading with `code`](#subheading-with-code)
"#
);
}

License

Licensed under either of

at your option.

Dependencies

~2.8–4MB
~74K SLoC