hugo/transform/absurl.go

34 lines
621 B
Go
Raw Normal View History

2013-10-01 19:59:29 +00:00
package transform
import (
"sync"
2013-10-01 19:59:29 +00:00
)
var absUrlInit sync.Once
var ar *absurlReplacer
2013-10-01 19:59:29 +00:00
// for performance reasons, we reuse the first baseUrl given
func initAbsurlReplacer(baseURL string) {
absUrlInit.Do(func() {
ar = newAbsurlReplacer(baseURL)
})
}
2013-10-01 19:59:29 +00:00
func AbsURL(absURL string) (trs []link, err error) {
initAbsurlReplacer(absURL)
2013-11-09 06:33:00 +00:00
trs = append(trs, func(content []byte) []byte {
return ar.replaceInHtml(content)
})
return
2013-10-01 19:59:29 +00:00
}
func AbsURLInXML(absURL string) (trs []link, err error) {
initAbsurlReplacer(absURL)
trs = append(trs, func(content []byte) []byte {
return ar.replaceInXml(content)
})
return
}