replace missing markdownify by RenderString
parent
50a56fcd75
commit
81988b477a
|
@ -32,7 +32,7 @@ Attributes:
|
||||||
|
|
||||||
### Include \*.md file
|
### Include \*.md file
|
||||||
|
|
||||||
Included markdown files will be rendered using the `markdownify` filter.
|
Included markdown files will be rendered using the `RenderString` [function](https://gohugo.io/functions/renderstring/).
|
||||||
|
|
||||||
{{< hint warning >}}
|
{{< hint warning >}}
|
||||||
**Location of markdown files**\
|
**Location of markdown files**\
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
{{ end }}/>
|
{{ end }}/>
|
||||||
</a>
|
</a>
|
||||||
{{ with $caption }}
|
{{ with $caption }}
|
||||||
<figcaption>{{ . }}{{ with $source.Params.credits }} ({{ . | markdownify }}){{ end }}</figcaption>
|
<figcaption>{{ . }}{{ with $source.Params.credits }} ({{ . | $.Page.RenderString }}){{ end }}</figcaption>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</figure>
|
</figure>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{{$file := .Get "file"}}
|
{{ $file := .Get "file" }}
|
||||||
<div class="gdoc-include">
|
<div class="gdoc-include">
|
||||||
{{- if eq (.Get "markdown") "true" -}}
|
{{- if eq (.Get "markdown") "true" -}}
|
||||||
{{- $file | readFile | $.Page.RenderString -}}
|
{{- $file | readFile | $.Page.RenderString -}}
|
||||||
|
|
Loading…
Reference in New Issue