mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
fixing double slash during absurlify
This commit is contained in:
parent
b69694a3ae
commit
90a902c843
1 changed files with 8 additions and 5 deletions
|
@ -1,9 +1,10 @@
|
|||
package transform
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
htmltran "code.google.com/p/go-html-transform/html/transform"
|
||||
"net/url"
|
||||
"bytes"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func AbsURL(absURL string) (trs []link, err error) {
|
||||
|
@ -13,11 +14,13 @@ func AbsURL(absURL string) (trs []link, err error) {
|
|||
return
|
||||
}
|
||||
|
||||
base := strings.TrimRight(baseURL.String(), "/")
|
||||
|
||||
var (
|
||||
srcdq = []byte(" src=\""+baseURL.String()+"/")
|
||||
hrefdq = []byte(" href=\""+baseURL.String()+"/")
|
||||
srcsq = []byte(" src='"+baseURL.String()+"/")
|
||||
hrefsq = []byte(" href='"+baseURL.String()+"/")
|
||||
srcdq = []byte(" src=\"" + base + "/")
|
||||
hrefdq = []byte(" href=\"" + base + "/")
|
||||
srcsq = []byte(" src='" + base + "/")
|
||||
hrefsq = []byte(" href='" + base + "/")
|
||||
)
|
||||
trs = append(trs, func(content []byte) []byte {
|
||||
content = bytes.Replace(content, []byte(" src=\"/"), srcdq, -1)
|
||||
|
|
Loading…
Reference in a new issue