From e5d2a8f6a3121701eb95712b5540989fafaa0c71 Mon Sep 17 00:00:00 2001 From: davidejones Date: Tue, 25 Oct 2022 16:33:25 +0100 Subject: [PATCH] Avoid nilpointer when shortcode page content output nil Updates #10391 --- hugolib/shortcode.go | 11 +++++ hugolib/shortcode_test.go | 93 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 104 insertions(+) diff --git a/hugolib/shortcode.go b/hugolib/shortcode.go index b2f42ff1d99..a10afe2bcc9 100644 --- a/hugolib/shortcode.go +++ b/hugolib/shortcode.go @@ -381,6 +381,17 @@ func renderShortcode( // Pre Hugo 0.55 this was the behaviour even for the outer-most // shortcode. if sc.doMarkup && (level > 0 || sc.configVersion() == 1) { + + cp := p.pageOutput.cp + if cp == nil { + var err error + cp, err = newPageContentOutput(p, p.pageOutput) + if err != nil { + return "", false, err + } + p.pageOutput.initContentProvider(cp) + } + var err error b, err := p.pageOutput.cp.renderContent([]byte(inner), false) if err != nil { diff --git a/hugolib/shortcode_test.go b/hugolib/shortcode_test.go index ec521729b8b..b5f27d6218c 100644 --- a/hugolib/shortcode_test.go +++ b/hugolib/shortcode_test.go @@ -1087,3 +1087,96 @@ Title: {{ .Get "title" | safeHTML }} b.AssertFileContent("public/p1/index.html", `Title: Steve "Francia".`) } + +// Issue 10391. +func TestNestedShortcodeCustomOutputFormat(t *testing.T) { + t.Parallel() + + files := ` +-- config.toml -- + +[outputFormats.Foobar] +baseName = "foobar" +isPlainText = true +mediaType = "application/json" +notAlternative = true + +[languages.en] +languageName = "English" + +[languages.en.outputs] +home = [ "HTML", "RSS", "Foobar" ] + +[languages.fr] +languageName = "Français" + +[[module.mounts]] +source = "content/en" +target = "content" +lang = "en" + +[[module.mounts]] +source = "content/fr" +target = "content" +lang = "fr" + +-- layouts/_default/list.foobar.json -- +{{- $.Scratch.Add "data" slice -}} +{{- range (where .Site.AllPages "Kind" "!=" "home") -}} + {{- $.Scratch.Add "data" (dict "content" (.Plain | truncate 10000) "type" .Type "full_url" .Permalink) -}} +{{- end -}} +{{- $.Scratch.Get "data" | jsonify -}} +-- content/en/p1.md -- +--- +title: "p1" +--- + +### More information + +{{< tabs >}} +{{% tab "Test" %}} + +It's a test + +{{% /tab %}} +{{< /tabs >}} + +-- content/fr/p2.md -- +--- +title: Test +--- + +### Plus d'informations + +{{< tabs >}} +{{% tab "Test" %}} + +C'est un test + +{{% /tab %}} +{{< /tabs >}} + +-- layouts/shortcodes/tabs.html -- +
+
{{ .Inner }}
+
+ +-- layouts/shortcodes/tab.html -- +
{{ .Inner }}
+ +-- layouts/_default/single.html -- +{{ .Content }} +` + + b := NewIntegrationTestBuilder( + IntegrationTestConfig{ + T: t, + TxtarString: files, + Running: true, + Verbose: true, + }, + ).Build() + + b.AssertFileContent("public/fr/p2/index.html", `plus-dinformations`) + +}