hugo/tpl
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
..
cast
collections
compare
crypto
data resources: Add timeout to the HTTP request in Get 2021-12-02 16:11:14 +01:00
debug
encoding
fmt
hugo
images
inflect
internal
js
lang Fix description of lang.FormatNumberCustom 2021-11-01 18:54:43 +01:00
math
openapi/openapi3
os
partials
path tpl/path: Add path.Clean 2021-10-05 16:15:10 +02:00
reflect
resources Add remote support to resources.Get 2021-11-30 11:49:51 +01:00
safe
site
strings
templates
time tpl/time: Use configured location when date passed to Format is string 2021-10-30 16:09:38 +02:00
tplimpl Remove empty href element from pagination template 2021-12-02 09:14:30 +01:00
transform Implement XML data support 2021-12-02 17:30:36 +01:00
urls
template.go
template_info.go
template_test.go