
replace markdownify with .Page.RenderString, the latter trigger render hook properly see: https://gohugo.io/functions/markdownify/#readout > Note: if you need Render Hooks, which markdownify doesn’t currently support, use .RenderString instead.
7 lines
198 B
HTML
7 lines
198 B
HTML
<div class="image-size-control" style="
|
|
{{- with (.Get "width") }}max-width: {{ . }};{{ end -}}
|
|
{{- with (.Get "height") }}max-height: {{ . }};{{ end -}}
|
|
">
|
|
{{ .Page.RenderString .Inner }}
|
|
</div>
|