hugo/transform/absurl.go

34 lines
591 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(rw ContentReWriter) {
ar.replaceInHTML(rw)
})
return
2013-10-01 19:59:29 +00:00
}
func AbsURLInXML(absURL string) (trs []link, err error) {
initAbsURLReplacer(absURL)
trs = append(trs, func(rw ContentReWriter) {
ar.replaceInXML(rw)
})
return
}