This updates urfave/cli and its dependencies to v1.22.1: - diff for urfave/cli: https://github.com/urfave/cli/compare/v1.22.0...v1.22.1 - diff for go-md2man: https://github.com/cpuguy83/go-md2man/compare/v1.0.10...v2.0.0 - diff for blackfriday: https://github.com/russross/blackfriday/compare/v1.5.2...v2.0.1 Also adds github.com/shurcooL/sanitized_anchor_name as a new dependency, which is used by russross/blackfriday, but will be removed again in a future update (dependency is already removed on the v2 branch through russross/blackfriday@919b1f5b9b Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
30 lines
899 B
Go
30 lines
899 B
Go
// 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.
|
|
package sanitized_anchor_name // import "github.com/shurcooL/sanitized_anchor_name"
|
|
|
|
import "unicode"
|
|
|
|
// Create returns a sanitized anchor name for the given text.
|
|
func Create(text string) string {
|
|
var anchorName []rune
|
|
var futureDash = false
|
|
for _, r := range text {
|
|
switch {
|
|
case unicode.IsLetter(r) || unicode.IsNumber(r):
|
|
if futureDash && len(anchorName) > 0 {
|
|
anchorName = append(anchorName, '-')
|
|
}
|
|
futureDash = false
|
|
anchorName = append(anchorName, unicode.ToLower(r))
|
|
default:
|
|
futureDash = true
|
|
}
|
|
}
|
|
return string(anchorName)
|
|
}
|