1
- // Copyright 2024 The Hugo Authors. All rights reserved.
1
+ // Copyright 2025 The Hugo Authors. All rights reserved.
2
2
//
3
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
4
// you may not use this file except in compliance with the License.
@@ -23,6 +23,7 @@ import (
23
23
"github.com/gohugoio/hugo/markup/asciidocext"
24
24
"github.com/gohugoio/hugo/markup/pandoc"
25
25
"github.com/gohugoio/hugo/markup/rst"
26
+ "github.com/gohugoio/hugo/related"
26
27
)
27
28
28
29
const filesPagesFromDataTempleBasic = `
@@ -73,10 +74,11 @@ Pfile Content
73
74
{{ $title := printf "%s:%s" $pd $pp }}
74
75
{{ $date := "2023-03-01" | time.AsTime }}
75
76
{{ $dates := dict "date" $date }}
77
+ {{ $keywords := slice "foo" "Bar"}}
76
78
{{ $contentMarkdown := dict "value" "**Hello World**" "mediaType" "text/markdown" }}
77
79
{{ $contentMarkdownDefault := dict "value" "**Hello World Default**" }}
78
80
{{ $contentHTML := dict "value" "<b>Hello World!</b> No **markdown** here." "mediaType" "text/html" }}
79
- {{ $.AddPage (dict "kind" "page" "path" "P1" "title" $title "dates" $dates "content" $contentMarkdown "params" (dict "param1" "param1v" ) ) }}
81
+ {{ $.AddPage (dict "kind" "page" "path" "P1" "title" $title "dates" $dates "keywords" $keywords " content" $contentMarkdown "params" (dict "param1" "param1v" ) ) }}
80
82
{{ $.AddPage (dict "kind" "page" "path" "p2" "title" "p2title" "dates" $dates "content" $contentHTML ) }}
81
83
{{ $.AddPage (dict "kind" "page" "path" "p3" "title" "p3title" "dates" $dates "content" $contentMarkdownDefault "draft" false ) }}
82
84
{{ $.AddPage (dict "kind" "page" "path" "p4" "title" "p4title" "dates" $dates "content" $contentMarkdownDefault "draft" $data.draft ) }}
@@ -329,6 +331,24 @@ func TestPagesFromGoTmplRemoveGoTmpl(t *testing.T) {
329
331
b .AssertFileContent ("public/docs/index.html" , "RegularPagesRecursive: pfile:/docs/pfile|$" )
330
332
}
331
333
334
+ // Issue #13443.
335
+ func TestPagesFromGoRelatedKeywords (t * testing.T ) {
336
+ t .Parallel ()
337
+ b := hugolib .Test (t , filesPagesFromDataTempleBasic )
338
+
339
+ p1 := b .H .Sites [0 ].RegularPages ()[0 ]
340
+ icfg := related.IndexConfig {
341
+ Name : "keywords" ,
342
+ }
343
+ k , err := p1 .RelatedKeywords (icfg )
344
+ b .Assert (err , qt .IsNil )
345
+ b .Assert (k , qt .DeepEquals , icfg .StringsToKeywords ("foo" , "Bar" ))
346
+ icfg .Name = "title"
347
+ k , err = p1 .RelatedKeywords (icfg )
348
+ b .Assert (err , qt .IsNil )
349
+ b .Assert (k , qt .DeepEquals , icfg .StringsToKeywords ("p1:p1" ))
350
+ }
351
+
332
352
func TestPagesFromGoTmplLanguagePerFile (t * testing.T ) {
333
353
filesTemplate := `
334
354
-- hugo.toml --
0 commit comments