hugo/tpl/internal/go_templates/texttemplate
Bjørn Erik Pedersen 22ef5da20d
Add resources.GetRemote
In Hugo 0.89 we added remote support to `resources.Get`.

In hindsight that was not a great idea, as a poll from many Hugo users showed. See Issue #9285 for more details.

After this commit `resources.Get` only supports local resource lookups. If you want to support both, you need to use a construct similar to:

Also improve some option case handling.

```
{{ resource := "" }}
{{ if (urls.Parse $url).IsAbs }}
{{ $resource = resources.GetRemote $url }}
{{ else }}
{{ $resource = resources.Get $url }}
{{ end }}
```

Fixes #9285
Fixes #9296
2021-12-17 09:33:51 +01:00
..
parse tpl/internal: Synch Go templates fork with Go 1.16dev 2021-02-18 14:11:48 +01:00
testdata Create lightweight forks of text/template and html/template 2019-12-12 09:59:34 +01:00
doc.go tpl/internal: Synch Go templates fork with Go 1.16dev 2021-02-18 14:11:48 +01:00
example_test.go tpl/internal/go_templates: Revert formatting 2020-12-03 13:47:43 +01:00
examplefiles_test.go Pull in latest Go template source 2021-02-18 14:11:48 +01:00
examplefunc_test.go Create lightweight forks of text/template and html/template 2019-12-12 09:59:34 +01:00
exec.go Add resources.GetRemote 2021-12-17 09:33:51 +01:00
exec_test.go Pull in latest Go template source 2021-02-18 14:11:48 +01:00
funcs.go Fix Go template script escaping 2020-05-23 22:00:34 +02:00
helper.go Pull in latest Go template source 2021-02-18 14:11:48 +01:00
hugo_template.go all: Fix minor typos 2020-12-16 12:11:32 +01:00
hugo_template_test.go tpl/internal/go_templates: Revert formatting 2020-12-03 13:47:43 +01:00
link_test.go Pull in latest Go template source 2021-02-18 14:11:48 +01:00
multi_test.go tpl/internal: Synch Go templates fork with Go 1.16dev 2021-02-18 14:11:48 +01:00
option.go Create lightweight forks of text/template and html/template 2019-12-12 09:59:34 +01:00
template.go tpl: Add temporary patch to fix template data race 2021-02-18 14:11:48 +01:00