mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
parent
e691c48a5a
commit
25ddbb09fe
1 changed files with 2 additions and 1 deletions
|
@ -343,7 +343,7 @@ Publish 2: {{ $cssPublish2.Permalink }}
|
|||
b.WithTemplates("home.html", `
|
||||
{{ $toml := "slogan = \"Hugo Rocks!\"" | resources.FromString "slogan.toml" | transform.Unmarshal }}
|
||||
{{ $csv1 := "\"Hugo Rocks\",\"Hugo is Fast!\"" | resources.FromString "slogans.csv" | transform.Unmarshal }}
|
||||
{{ $csv2 := "a;b;c" | resources.FromString "abc.csv" | transform.Unmarshal (dict "csvComma" ";") }}
|
||||
{{ $csv2 := "a;b;c" | transform.Unmarshal (dict "comma" ";") }}
|
||||
|
||||
Slogan: {{ $toml.slogan }}
|
||||
CSV1: {{ $csv1 }} {{ len (index $csv1 0) }}
|
||||
|
@ -354,6 +354,7 @@ CSV2: {{ $csv2 }}
|
|||
b.AssertFileContent("public/index.html",
|
||||
`Slogan: Hugo Rocks!`,
|
||||
`[[Hugo Rocks Hugo is Fast!]] 2`,
|
||||
`CSV2: [[a b c]]`,
|
||||
)
|
||||
}},
|
||||
|
||||
|
|
Loading…
Reference in a new issue