Skip to content

BaseURL subdir repeated with RSS output format and render hooks enabled #13332

Closed
@jmooring

Description

@jmooring

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:

hugo/hugolib/site.go

Lines 1429 to 1435 in 835579b

if isRSS {
// Always canonify URLs in RSS
pd.AbsURLPath = s.absURLPath(targetPath)
} else if isHTML {
if s.conf.RelativeURLs || s.conf.CanonifyURLs {
pd.AbsURLPath = s.absURLPath(targetPath)
}

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
---
![alt](a.jpg)

[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")
}

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions