mirror of
https://github.com/gohugoio/hugo.git
synced 2025-02-20 01:00:58 +00:00
parent
44edd9382a
commit
714d4a9a97
1 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@ import (
|
||||||
"html/template"
|
"html/template"
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
|
"path/filepath"
|
||||||
"regexp"
|
"regexp"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
@ -48,7 +49,7 @@ func doTestShortcodeCrossrefs(t *testing.T, relative bool) {
|
||||||
expectedBase = baseURL
|
expectedBase = baseURL
|
||||||
}
|
}
|
||||||
|
|
||||||
path := "blog/post.md"
|
path := filepath.FromSlash("blog/post.md")
|
||||||
in := fmt.Sprintf(`{{< %s "%s" >}}`, refShortcode, path)
|
in := fmt.Sprintf(`{{< %s "%s" >}}`, refShortcode, path)
|
||||||
expected := fmt.Sprintf(`%s/simple/url/`, expectedBase)
|
expected := fmt.Sprintf(`%s/simple/url/`, expectedBase)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue