1 unstable release

0.1.0 Jun 22, 2023

#1569 in Text processing

Download history 4/week @ 2024-01-08 4/week @ 2024-01-29 5/week @ 2024-02-05 24/week @ 2024-02-12 24/week @ 2024-02-19 25/week @ 2024-02-26 3/week @ 2024-03-04 35/week @ 2024-03-11 27/week @ 2024-03-18 41/week @ 2024-03-25 71/week @ 2024-04-01 19/week @ 2024-04-08 34/week @ 2024-04-15

166 downloads per month
Used in 2 crates (via markdown-it-heading-ancho…)

Apache-2.0

43KB

github-slugger

crates.io

Generate a slug just like GitHub does for markdown headings. It also ensures slugs are unique in the same way GitHub does it. The overall goal of this package is to emulate the way GitHub handles generating markdown heading anchors as close as possible. It is based on the github-slugger JavaScript package.

This project is not a markdown or HTML parser: passing alpha *bravo* charlie or alpha <em>bravo</em> charlie doesn’t work. Instead pass the plain text value of the heading: alpha bravo charlie.

Usage

let mut slugger = github_slugger::Slugger::default();

slugger.slug("foo")
// returns 'foo'

slugger.slug("foo")
// returns 'foo-1'

slugger.slug("bar")
// returns 'bar'

slugger.slug("foo")
// returns 'foo-2'

slugger.slug("Привет non-latin 你好")
// returns 'привет-non-latin-你好'

slugger.slug("😄 emoji")
// returns '-emoji'

slugger.reset()

slugger.slug("foo")
// returns 'foo'

Check tests/fixtures.json for more examples.

If you need, you can also use the underlying implementation which does not keep track of the previously slugged strings:

github_slugger::slug("foo bar baz")
// returns 'foo-bar-baz'

github_slugger::slug("foo bar baz")
// returns the same slug 'foo-bar-baz' because it does not keep track

Dependencies

~2.1–3MB
~53K SLoC