5 releases (3 breaking)

0.4.0 Mar 31, 2024
0.3.0 Aug 11, 2023
0.2.0 Aug 5, 2023
0.1.1 Aug 2, 2020
0.1.0 Aug 2, 2020

#423 in Text processing

Download history 27/week @ 2024-02-23 14/week @ 2024-03-01 7/week @ 2024-03-08 19/week @ 2024-03-15 1/week @ 2024-03-22 181/week @ 2024-03-29 11/week @ 2024-04-05

213 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

~3–4MB
~75K SLoC