5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-04-20 17:07:31 +00:00
dependabot[bot] 61e00ad587
Bump github.com/russross/blackfriday from 1.6.0 to 2.0.0+incompatible
Bumps [github.com/russross/blackfriday](https://github.com/russross/blackfriday) from 1.6.0 to 2.0.0+incompatible.
- [Release notes](https://github.com/russross/blackfriday/releases)
- [Commits](https://github.com/russross/blackfriday/compare/v1.6.0...v2.0.0)

---
updated-dependencies:
- dependency-name: github.com/russross/blackfriday
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-02-01 02:17:34 +00:00

930 B

sanitized_anchor_name

Build Status GoDoc

Package sanitized_anchor_name provides a func to create sanitized anchor names.

Its logic can be reused by multiple packages to create interoperable anchor names and links to those anchors.

At this time, it does not try to ensure that generated anchor names are unique, that responsibility falls on the caller.

Installation

go get -u github.com/shurcooL/sanitized_anchor_name

Example

anchorName := sanitized_anchor_name.Create("This is a header")

fmt.Println(anchorName)

// Output:
// this-is-a-header

License