- Notifications
You must be signed in to change notification settings - Fork35
Generate a slug just like GitHub does for markdown headings.
License
Flet/github-slugger
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
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.
This project is not a markdown or HTML parser: passingalpha *bravo* charlieoralpha <em>bravo</em> charlie doesn’t work.Instead pass the plain text value of the heading:alpha bravo charlie.
npm install github-sluggerimportGithubSluggerfrom'github-slugger'constslugger=newGithubSlugger()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'
Checktest/fixtures.json for more examples.
If you need, you can also use the underlying implementation which does not keeptrack of the previously slugged strings (not recommended):
importGithubSlugger,{slug}from'github-slugger'slug('foo bar baz')// returns 'foo-bar-baz'slug('foo bar baz')// returns the same slug 'foo-bar-baz' because it does not keep track
Contributions welcome! Please read thecontributing guidelines first.
About
Generate a slug just like GitHub does for markdown headings.
Resources
License
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Contributors12
Uh oh!
There was an error while loading.Please reload this page.