1
0
mirror of https://gitea.com/gitea/tea.git synced 2024-06-23 06:35:38 +00:00
tea/vendor/github.com/shurcooL/sanitized_anchor_name
6543 0a5cdd60ac [Vendor] Update urfave/cli v1.20.0 -> v1.22.2 (#84)
Merge branch 'master' into update-cli-lib2

[Vendor] Update stretchr/testify  v1.3.0 -> v1.4.0 (#83)

update github.com/stretchr/testify  v1.3.0 -> v1.4.0

Co-authored-by: 6543 <6543@obermui.de>
Reviewed-by: techknowlogick <techknowlogick@gitea.io>
Reviewed-by: sapk <sapk@noreply.gitea.io>
Reviewed-by: appleboy <appleboy.tw@gmail.com>

Update urfave/cli v1.20.0 -> v1.22.2

Co-authored-by: 6543 <6543@obermui.de>
Reviewed-by: mrsdizzie <info@mrsdizzie.com>
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
2020-01-04 04:45:36 +00:00
..
.travis.yml [Vendor] Update urfave/cli v1.20.0 -> v1.22.2 (#84) 2020-01-04 04:45:36 +00:00
go.mod [Vendor] Update urfave/cli v1.20.0 -> v1.22.2 (#84) 2020-01-04 04:45:36 +00:00
LICENSE [Vendor] Update urfave/cli v1.20.0 -> v1.22.2 (#84) 2020-01-04 04:45:36 +00:00
main.go [Vendor] Update urfave/cli v1.20.0 -> v1.22.2 (#84) 2020-01-04 04:45:36 +00:00
README.md [Vendor] Update urfave/cli v1.20.0 -> v1.22.2 (#84) 2020-01-04 04:45:36 +00:00

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