mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Make contentTransformer names consistent
This commit is contained in:
parent
bec4bdae99
commit
bec9b92d0c
1 changed files with 4 additions and 4 deletions
|
@ -18,8 +18,8 @@ func absURLFromURL(URL string) (trs []link, err error) {
|
|||
}
|
||||
|
||||
func absURLFromReplacer(ar *absURLReplacer) (trs []link, err error) {
|
||||
trs = append(trs, func(rw contentTransformer) {
|
||||
ar.replaceInHTML(rw)
|
||||
trs = append(trs, func(ct contentTransformer) {
|
||||
ar.replaceInHTML(ct)
|
||||
})
|
||||
return
|
||||
}
|
||||
|
@ -34,8 +34,8 @@ func absURLInXMLFromURL(URL string) (trs []link, err error) {
|
|||
}
|
||||
|
||||
func absURLInXMLFromReplacer(ar *absURLReplacer) (trs []link, err error) {
|
||||
trs = append(trs, func(rw contentTransformer) {
|
||||
ar.replaceInXML(rw)
|
||||
trs = append(trs, func(ct contentTransformer) {
|
||||
ar.replaceInXML(ct)
|
||||
})
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue