Fail with error when double-rendering text in markdownify/RenderString
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 10 Mar 2022 07:19:03 +0000 (08:19 +0100)
committerGitHub <noreply@github.com>
Thu, 10 Mar 2022 07:19:03 +0000 (08:19 +0100)
commit4e14cf7607ad3afdbf65272cd5bb61dba4b415da
tree84922c4407920e9b45502afce15730c0da796a88
parent5697348e1732a5f64ee7467283eb0335f2ec36e8
Fail with error when double-rendering text in markdownify/RenderString

This commit prevents the most commons case of infinite recursion in link render hooks when the `linkify` option is enabled (see below). This is always a user error, but getting a `stack overflow` (the current stack limit in Go is 1 GB on 64-bit, 250 MB on 32-bit) error isn't very helpful. This fix will not prevent all such errors, though, but we may do better once #9570 is in place.

So, these will fail:

```
<a href="{{ .Destination | safeURL }}" >{{ .Text | markdownify }}</a>
<a href="{{ .Destination | safeURL }}" >{{ .Text | .Page.RenderString }}</a>
```

`.Text` is already rendered to `HTML`. The above needs to be rewritten to:

```
<a href="{{ .Destination | safeURL }}" >{{ .Text | safeHTML }}</a>
<a href="{{ .Destination | safeURL }}" >{{ .Text | safeHTML }}</a>
```

Fixes #8959
common/types/hstring/stringtypes.go [new file with mode: 0644]
common/types/hstring/stringtypes_test.go [new file with mode: 0644]
hugolib/page__per_output.go
markup/converter/hooks/hooks.go
markup/goldmark/integration_test.go
markup/goldmark/render_hooks.go
tpl/transform/transform.go