mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-18 21:11:19 +02:00
markup/goldmark: Simplify code
This commit is contained in:
@@ -48,9 +48,9 @@ func sanitizeAnchorNameWithHook(b []byte, asciiOnly bool, hook func(buf *bytes.B
|
|||||||
r, size := utf8.DecodeRune(b)
|
r, size := utf8.DecodeRune(b)
|
||||||
switch {
|
switch {
|
||||||
case asciiOnly && size != 1:
|
case asciiOnly && size != 1:
|
||||||
case isSpace(r):
|
case r == '-' || isSpace(r):
|
||||||
buf.WriteString("-")
|
buf.WriteRune('-')
|
||||||
case r == '-' || isAlphaNumeric(r):
|
case isAlphaNumeric(r):
|
||||||
buf.WriteRune(unicode.ToLower(r))
|
buf.WriteRune(unicode.ToLower(r))
|
||||||
default:
|
default:
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user