Closed
Description
Reference: https://discourse.gohugo.io/t/53340
We're getting this:
https://example.org/subdir/subdir/s1/p1/
Instead of this:
https://example.org/subdir/s1/p1/
We're doing some brute force replacements in RSS that aren't doing what they should:
Lines 1429 to 1435 in 835579b
This is just another variant of known issues with canonifyURLs
which, for the record, I hate. I'm not a fan of relativeURLs
either, but that's still useful on the rare occasion when someone wants to build a server-less site.
Failing test
// Issue 13332
func TestFoo(t *testing.T) {
t.Parallel()
files := `
-- hugo.toml --
baseURL = 'https://example.org/subdir/'
disableKinds = ['section','sitemap','taxonomy','term']
[markup.goldmark.renderHooks.image]
enableDefault = true
[markup.goldmark.renderHooks.link]
enableDefault = true
-- layouts/_default/home.html --
{{ .Content }}|
-- layouts/_default/single.html --
{{ .Content }}|
-- layouts/_default/rss.xml --
{{ with site.GetPage "/s1/p2" }}
{{ .Summary | transform.XMLEscape | safeHTML }}
{{ end }}
-- content/s1/p1.md --
---
title: p1
---
-- content/s1/p2/index.md --
---
title: p2
---

[p1](/s1/p1)
-- content/s1/p2/a.jpg --
`
b := hugolib.Test(t, files)
b.AssertFileContent("public/index.xml", "https://example.org/subdir/s1/p1/")
b.AssertFileContent("public/index.xml", "https://example.org/subdir/s1/p2/a.jpg")
}