summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Mooring <joe.mooring@veriphor.com>2023-10-07 11:11:45 -0700
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-10-30 09:01:34 +0100
commita2488b1c9523241b39898838a489a078587500a7 (patch)
treece8fd293b8931ac92a38cad351039a8784d0f5f0
parent8f60c0c1ec11c3c47ed7e3eff121ba1f1976f755 (diff)
hugolib: Display correct markup identifier in error message
Fixes #11538
-rw-r--r--hugolib/integration_test.go27
-rw-r--r--hugolib/page__meta.go2
2 files changed, 28 insertions, 1 deletions
diff --git a/hugolib/integration_test.go b/hugolib/integration_test.go
index 417fe2129..1109694b1 100644
--- a/hugolib/integration_test.go
+++ b/hugolib/integration_test.go
@@ -14,6 +14,7 @@
package hugolib_test
import (
+ "strings"
"testing"
"github.com/gohugoio/hugo/hugolib"
@@ -87,3 +88,29 @@ tags: ['T1']
)
}
+
+// Issue #11538
+func TestRenderStringBadMarkupOpt(t *testing.T) {
+ t.Parallel()
+
+ files := `
+-- layouts/index.html --
+{{ $opts := dict "markup" "foo" }}
+{{ "something" | .RenderString $opts }}
+ `
+
+ b := hugolib.NewIntegrationTestBuilder(
+ hugolib.IntegrationTestConfig{
+ T: t,
+ TxtarString: files,
+ },
+ )
+
+ _, err := b.BuildE()
+
+ want := `no content renderer found for markup "foo"`
+ if !strings.Contains(err.Error(), want) {
+ t.Errorf("error msg must contain %q, error msg actually contains %q", want, err.Error())
+ }
+
+}
diff --git a/hugolib/page__meta.go b/hugolib/page__meta.go
index 0dd236904..3781a847a 100644
--- a/hugolib/page__meta.go
+++ b/hugolib/page__meta.go
@@ -731,7 +731,7 @@ func (p *pageMeta) newContentConverter(ps *pageState, markup string) (converter.
}
cp := p.s.ContentSpec.Converters.Get(markup)
if cp == nil {
- return converter.NopConverter, fmt.Errorf("no content renderer found for markup %q", p.markup)
+ return converter.NopConverter, fmt.Errorf("no content renderer found for markup %q", markup)
}
var id string