mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-21 21:35:28 +02:00
tpl/urls: Add anchorize template func
This commit is contained in:
@@ -59,6 +59,13 @@ func init() {
|
||||
[][2]string{},
|
||||
)
|
||||
|
||||
ns.AddMethodMapping(ctx.Anchorize,
|
||||
[]string{"anchorize"},
|
||||
[][2]string{
|
||||
{`{{ "This is a title" | anchorize }}`, `this-is-a-title`},
|
||||
},
|
||||
)
|
||||
|
||||
return ns
|
||||
|
||||
}
|
||||
|
@@ -16,6 +16,9 @@ package urls
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
|
||||
"github.com/russross/blackfriday"
|
||||
|
||||
"html/template"
|
||||
"net/url"
|
||||
|
||||
@@ -78,6 +81,15 @@ func (ns *Namespace) URLize(a interface{}) (string, error) {
|
||||
return ns.deps.PathSpec.URLize(s), nil
|
||||
}
|
||||
|
||||
// Anchorize creates sanitized anchor names that are compatible with Blackfriday.
|
||||
func (ns *Namespace) Anchorize(a interface{}) (string, error) {
|
||||
s, err := cast.ToStringE(a)
|
||||
if err != nil {
|
||||
return "", nil
|
||||
}
|
||||
return blackfriday.SanitizedAnchorName(s), nil
|
||||
}
|
||||
|
||||
type reflinker interface {
|
||||
Ref(refs ...string) (string, error)
|
||||
RelRef(refs ...string) (string, error)
|
||||
|
Reference in New Issue
Block a user