]> git.maquefel.me Git - brevno-suite/hugo/commitdiff
tpl/collections: Make delimit return a string
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 28 Oct 2023 09:10:27 +0000 (11:10 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 28 Oct 2023 09:54:23 +0000 (11:54 +0200)
Closes #10876
Closes #11502

hugolib/page_test.go
tpl/collections/collections.go
tpl/collections/collections_test.go

index 7e34f04998b9b3ed5fd8b1bf5a70afd039fc2ddb..ca6164d2cf7549b3cbe940c2c2cd8f726ecf7421 100644 (file)
@@ -356,8 +356,8 @@ func normalizeExpected(ext, str string) string {
 }
 
 func testAllMarkdownEnginesForPages(t *testing.T,
-       assertFunc func(t *testing.T, ext string, pages page.Pages), settings map[string]any, pageSources ...string) {
-
+       assertFunc func(t *testing.T, ext string, pages page.Pages), settings map[string]any, pageSources ...string,
+) {
        engines := []struct {
                ext           string
                shouldExecute func() bool
@@ -643,7 +643,6 @@ Simple Page With Some Date`
 }
 
 func TestPageRawContent(t *testing.T) {
-
        files := `
 -- hugo.toml --
 -- content/basic.md --
@@ -668,7 +667,6 @@ title: "empty"
 
        b.AssertFileContent("public/basic/index.html", "|**basic**|")
        b.AssertFileContent("public/empty/index.html", "! title")
-
 }
 
 func TestPageWithShortCodeInSummary(t *testing.T) {
@@ -1954,5 +1952,4 @@ func TestRenderWithoutArgument(t *testing.T) {
        ).BuildE()
 
        b.Assert(err, qt.IsNotNil)
-
 }
index 279dbb169282b02c8a9c4fcf1a633819293d5f30..e34753f1777d8861d57749afc4a4b24bab98797d 100644 (file)
@@ -17,16 +17,14 @@ package collections
 
 import (
        "context"
+       "errors"
        "fmt"
-       "html/template"
        "math/rand"
        "net/url"
        "reflect"
        "strings"
        "time"
 
-       "errors"
-
        "github.com/gohugoio/hugo/common/collections"
        "github.com/gohugoio/hugo/common/hugo"
        "github.com/gohugoio/hugo/common/maps"
@@ -101,7 +99,7 @@ func (ns *Namespace) After(n any, l any) (any, error) {
 
 // Delimit takes a given list l and returns a string delimited by sep.
 // If last is passed to the function, it will be used as the final delimiter.
-func (ns *Namespace) Delimit(ctx context.Context, l, sep any, last ...any) (template.HTML, error) {
+func (ns *Namespace) Delimit(ctx context.Context, l, sep any, last ...any) (string, error) {
        d, err := cast.ToStringE(sep)
        if err != nil {
                return "", err
@@ -154,7 +152,7 @@ func (ns *Namespace) Delimit(ctx context.Context, l, sep any, last ...any) (temp
                return "", fmt.Errorf("can't iterate over %v", l)
        }
 
-       return template.HTML(str), nil
+       return str, nil
 }
 
 // Dictionary creates a new map from the given parameters by
index 43f8377f3affa58673325e1bb37be8fb8335ba2a..dcdd3bd5cb066c29cb5aa91db32bb4b752b38238 100644 (file)
@@ -71,8 +71,7 @@ func TestAfter(t *testing.T) {
        }
 }
 
-type tstGrouper struct {
-}
+type tstGrouper struct{}
 
 type tstGroupers []*tstGrouper
 
@@ -81,8 +80,7 @@ func (g tstGrouper) Group(key any, items any) (any, error) {
        return fmt.Sprintf("%v(%d)", key, ilen), nil
 }
 
-type tstGrouper2 struct {
-}
+type tstGrouper2 struct{}
 
 func (g *tstGrouper2) Group(key any, items any) (any, error) {
        ilen := reflect.ValueOf(items).Len()
@@ -134,7 +132,7 @@ func TestDelimit(t *testing.T) {
                seq       any
                delimiter any
                last      any
-               expect    template.HTML
+               expect    string
        }{
                {[]string{"class1", "class2", "class3"}, " ", nil, "class1 class2 class3"},
                {[]int{1, 2, 3, 4, 5}, ",", nil, "1,2,3,4,5"},
@@ -163,7 +161,7 @@ func TestDelimit(t *testing.T) {
        } {
                errMsg := qt.Commentf("[%d] %v", i, test)
 
-               var result template.HTML
+               var result string
                var err error
 
                if test.last == nil {