mirror of
https://github.com/gohugoio/hugo.git
synced 2025-05-09 12:24:11 +03:00
Merge commit '8b9803425e
'
This commit is contained in:
commit
af0cb57aaf
475 changed files with 7408 additions and 4720 deletions
|
@ -11,33 +11,22 @@ action:
|
|||
---
|
||||
|
||||
```go-html-template
|
||||
{{ $data := "" }}
|
||||
{{ $p := "data/books.json" }}
|
||||
{{ with resources.Get $p }}
|
||||
{{ $opts := dict "delimiter" "," }}
|
||||
{{ $data = . | transform.Unmarshal $opts }}
|
||||
{{ else }}
|
||||
{{ errorf "Unable to get resource %q" $p }}
|
||||
{{ end }}
|
||||
<pre>{{ debug.Dump site.Data.books }}</pre>
|
||||
```
|
||||
|
||||
```go-html-template
|
||||
<pre>{{ debug.Dump $data }}</pre>
|
||||
```
|
||||
|
||||
```text
|
||||
[]interface {}{
|
||||
map[string]interface {}{
|
||||
```json
|
||||
[
|
||||
{
|
||||
"author": "Victor Hugo",
|
||||
"rating": 5.0,
|
||||
"title": "Les Misérables",
|
||||
"rating": 4,
|
||||
"title": "The Hunchback of Notre Dame"
|
||||
},
|
||||
map[string]interface {}{
|
||||
{
|
||||
"author": "Victor Hugo",
|
||||
"rating": 4.0,
|
||||
"title": "The Hunchback of Notre Dame",
|
||||
},
|
||||
}
|
||||
"rating": 5,
|
||||
"title": "Les Misérables"
|
||||
}
|
||||
]
|
||||
```
|
||||
|
||||
{{% note %}}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue