hugo/parser/metadecoders
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
..
decoder.go Implement XML data support 2021-12-02 17:30:36 +01:00
decoder_test.go Implement XML data support 2021-12-02 17:30:36 +01:00
format.go Implement XML data support 2021-12-02 17:30:36 +01:00
format_test.go Implement XML data support 2021-12-02 17:30:36 +01:00