hugo/parser
Paul van Brouwershaven 0eaaa8fee3
Implement XML data support
Example:

```
{{ with resources.Get "https://example.com/rss.xml" | transform.Unmarshal }}
    {{ range .channel.item }}
        <strong>{{ .title | plainify | htmlUnescape }}</strong><br />
        <p>{{ .description | plainify | htmlUnescape }}</p>
        {{ $link := .link | plainify | htmlUnescape }}
        <a href="{{ $link }}">{{ $link }}</a><br />
        <hr>
    {{ end }}
{{ end }}
```

Closes #4470
2021-12-02 17:30:36 +01:00
..
metadecoders Implement XML data support 2021-12-02 17:30:36 +01:00
pageparser all: Fix minor typos 2020-12-16 12:11:32 +01:00
frontmatter.go Implement XML data support 2021-12-02 17:30:36 +01:00
frontmatter_test.go Switch to go-toml v2 2021-07-28 11:51:13 +02:00
lowercase_camel_json.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00