Skip to content

Commit dde9d9d

Browse files
committed
Adjust error handling in ToMath vs try (note)
Closes #13239
1 parent 892b491 commit dde9d9d

File tree

4 files changed

+38
-38
lines changed

4 files changed

+38
-38
lines changed

‎common/types/types.go

-19
Original file line numberDiff line numberDiff line change
@@ -133,22 +133,3 @@ func NewBool(b bool) *bool {
133133
type PrintableValueProvider interface {
134134
PrintableValue() any
135135
}
136-
137-
var _ PrintableValueProvider = Result[any]{}
138-
139-
// Result is a generic result type.
140-
type Result[T any] struct {
141-
// The result value.
142-
Value T
143-
144-
// The error value.
145-
Err error
146-
}
147-
148-
// PrintableValue returns the value or panics if there is an error.
149-
func (r Result[T]) PrintableValue() any {
150-
if r.Err != nil {
151-
panic(r.Err)
152-
}
153-
return r.Value
154-
}

‎hugolib/hugo_sites_build.go

+8-4
Original file line numberDiff line numberDiff line change
@@ -347,10 +347,14 @@ func (h *HugoSites) render(l logg.LevelLogger, config *BuildCfg) error {
347347
if err == nil {
348348
return nil
349349
}
350-
if strings.Contains(err.Error(), "can't evaluate field Err in type resource.Resource") {
351-
// In Hugo 0.141.0 we replaced the special error handling for resources.GetRemote
352-
// with the more general try.
353-
return fmt.Errorf("%s: Resource.Err was removed in Hugo v0.141.0 and replaced with a new try keyword, see https://gohugo.io/functions/go-template/try/", err)
350+
// In Hugo 0.141.0 we replaced the special error handling for resources.GetRemote
351+
// with the more general try.
352+
if strings.Contains(err.Error(), "can't evaluate field Err in type") {
353+
if strings.Contains(err.Error(), "resource.Resource") {
354+
return fmt.Errorf("%s: Resource.Err was removed in Hugo v0.141.0 and replaced with a new try keyword, see https://gohugo.io/functions/go-template/try/", err)
355+
} else if strings.Contains(err.Error(), "template.HTML") {
356+
return fmt.Errorf("%s: the return type of transform.ToMath was changed in Hugo v0.141.0 and the error handling replaced with a new try keyword, see https://gohugo.io/functions/go-template/try/", err)
357+
}
354358
}
355359
return err
356360
}

‎tpl/transform/transform.go

+7-12
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ import (
2828
"github.com/gohugoio/hugo/cache/dynacache"
2929
"github.com/gohugoio/hugo/common/hashing"
3030
"github.com/gohugoio/hugo/common/hugio"
31-
"github.com/gohugoio/hugo/common/types"
3231
"github.com/gohugoio/hugo/internal/warpc"
3332
"github.com/gohugoio/hugo/markup/converter/hooks"
3433
"github.com/gohugoio/hugo/markup/highlight"
@@ -200,15 +199,13 @@ func (ns *Namespace) Plainify(s any) (template.HTML, error) {
200199

201200
// ToMath converts a LaTeX string to math in the given format, default MathML.
202201
// This uses KaTeX to render the math, see https://katex.org/.
203-
func (ns *Namespace) ToMath(ctx context.Context, args ...any) (types.Result[template.HTML], error) {
204-
var res types.Result[template.HTML]
205-
202+
func (ns *Namespace) ToMath(ctx context.Context, args ...any) (template.HTML, error) {
206203
if len(args) < 1 {
207-
return res, errors.New("must provide at least one argument")
204+
return "", errors.New("must provide at least one argument")
208205
}
209206
expression, err := cast.ToStringE(args[0])
210207
if err != nil {
211-
return res, err
208+
return "", err
212209
}
213210

214211
katexInput := warpc.KatexInput{
@@ -223,7 +220,7 @@ func (ns *Namespace) ToMath(ctx context.Context, args ...any) (types.Result[temp
223220

224221
if len(args) > 1 {
225222
if err := mapstructure.WeakDecode(args[1], &katexInput.Options); err != nil {
226-
return res, err
223+
return "", err
227224
}
228225
}
229226

@@ -259,13 +256,11 @@ func (ns *Namespace) ToMath(ctx context.Context, args ...any) (types.Result[temp
259256

260257
return template.HTML(s), err
261258
})
262-
263-
res = types.Result[template.HTML]{
264-
Value: v,
265-
Err: err,
259+
if err != nil {
260+
return "", err
266261
}
267262

268-
return res, nil
263+
return v, nil
269264
}
270265

271266
// For internal use.

‎tpl/transform/transform_integration_test.go

+23-3
Original file line numberDiff line numberDiff line change
@@ -183,18 +183,38 @@ disableKinds = ['page','rss','section','sitemap','taxonomy','term']
183183
-- hugo.toml --
184184
disableKinds = ['page','rss','section','sitemap','taxonomy','term']
185185
-- layouts/index.html --
186-
{{ with transform.ToMath "c = \\foo{a^2 + b^2}" }}
186+
{{ with try (transform.ToMath "c = \\foo{a^2 + b^2}") }}
187187
{{ with .Err }}
188188
{{ warnf "error: %s" . }}
189189
{{ else }}
190-
{{ . }}
190+
{{ .Value }}
191191
{{ end }}
192192
{{ end }}
193193
`
194194
b, err := hugolib.TestE(t, files, hugolib.TestOptWarn())
195195

196196
b.Assert(err, qt.IsNil)
197-
b.AssertLogContains("WARN error: KaTeX parse error: Undefined control sequence: \\foo")
197+
b.AssertLogContains("WARN error: template: index.html:1:22: executing \"index.html\" at <transform.ToMath>: error calling ToMath: KaTeX parse error: Undefined control sequence: \\foo at position 5: c = \\̲f̲o̲o̲{a^2 + b^2}")
198+
})
199+
200+
// See issue 13239.
201+
t.Run("Handle in template, old Err construct", func(t *testing.T) {
202+
files := `
203+
-- hugo.toml --
204+
disableKinds = ['page','rss','section','sitemap','taxonomy','term']
205+
-- layouts/index.html --
206+
{{ with transform.ToMath "c = \\pm\\sqrt{a^2 + b^2}" }}
207+
{{ with .Err }}
208+
{{ warnf "error: %s" . }}
209+
{{ else }}
210+
{{ . }}
211+
{{ end }}
212+
{{ end }}
213+
`
214+
b, err := hugolib.TestE(t, files, hugolib.TestOptWarn())
215+
216+
b.Assert(err, qt.IsNotNil)
217+
b.Assert(err.Error(), qt.Contains, "the return type of transform.ToMath was changed in Hugo v0.141.0 and the error handling replaced with a new try keyword, see https://gohugo.io/functions/go-template/try/")
198218
})
199219
}
200220

0 commit comments

Comments
 (0)