hugolib: Support reflinks starting with a slash
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 15 Jul 2017 09:05:14 +0000 (11:05 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 21 Jul 2017 11:08:32 +0000 (13:08 +0200)
Fixes #3703

hugolib/site.go
hugolib/site_test.go

index b663a39f02e43e54b285c405adc0a248992d3b17..47c2af4538adcb15617509622c563dee78ddc626 100644 (file)
@@ -416,6 +416,9 @@ func (s *SiteInfo) refLink(ref string, page *Page, relative bool, outputFormat s
        var refURL *url.URL
        var err error
 
+       ref = filepath.ToSlash(ref)
+       ref = strings.TrimPrefix(ref, "/")
+
        refURL, err = url.Parse(ref)
 
        if err != nil {
index ff8fdf48bfe3ff116a6d9e5b723e958fc5015389..6bcfaa4415eb4181b82deb1930a8762d24849a83 100644 (file)
@@ -232,6 +232,8 @@ func doTestCrossrefs(t *testing.T, relative, uglyURLs bool) {
                expectedPathSuffix = "/index.html"
        }
 
+       doc3Slashed := filepath.FromSlash("/sect/doc3.md")
+
        sources := []source.ByteSource{
                {
                        Name:    filepath.FromSlash("sect/doc1.md"),
@@ -251,6 +253,11 @@ THE END.`, refShortcode)),
                        Name:    filepath.FromSlash("sect/doc3.md"),
                        Content: []byte(fmt.Sprintf(`**Ref 1:**{{< %s "sect/doc3.md" >}}.`, refShortcode)),
                },
+               // Issue #3703
+               {
+                       Name:    filepath.FromSlash("sect/doc4.md"),
+                       Content: []byte(fmt.Sprintf(`**Ref 1:**{{< %s "%s" >}}.`, refShortcode, doc3Slashed)),
+               },
        }
 
        cfg, fs := newTestCfg()
@@ -271,9 +278,7 @@ THE END.`, refShortcode)),
                        WithTemplate: createWithTemplateFromNameValues("_default/single.html", "{{.Content}}")},
                BuildCfg{})
 
-       if len(s.RegularPages) != 3 {
-               t.Fatalf("Expected 3 got %d pages", len(s.AllPages))
-       }
+       require.Len(t, s.RegularPages, 4)
 
        th := testHelper{s.Cfg, s.Fs, t}
 
@@ -284,6 +289,7 @@ THE END.`, refShortcode)),
                {filepath.FromSlash(fmt.Sprintf("public/sect/doc1%s", expectedPathSuffix)), fmt.Sprintf("<p>Ref 2: %s/sect/doc2%s</p>\n", expectedBase, expectedURLSuffix)},
                {filepath.FromSlash(fmt.Sprintf("public/sect/doc2%s", expectedPathSuffix)), fmt.Sprintf("<p><strong>Ref 1:</strong></p>\n\n%s/sect/doc1%s\n\n<p>THE END.</p>\n", expectedBase, expectedURLSuffix)},
                {filepath.FromSlash(fmt.Sprintf("public/sect/doc3%s", expectedPathSuffix)), fmt.Sprintf("<p><strong>Ref 1:</strong>%s/sect/doc3%s.</p>\n", expectedBase, expectedURLSuffix)},
+               {filepath.FromSlash(fmt.Sprintf("public/sect/doc4%s", expectedPathSuffix)), fmt.Sprintf("<p><strong>Ref 1:</strong>%s/sect/doc3%s.</p>\n", expectedBase, expectedURLSuffix)},
        }
 
        for _, test := range tests {