mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 05:18:28 -04:00
shortcode lookup being weird -- explicitly calling RenderString seems to help?
This commit is contained in:
parent
a7b9f897f8
commit
7001394614
@ -196,7 +196,7 @@
|
||||
on <a class="date" href="{{ (.OutputFormats.Get "html").Permalink }}">{{ .Date.Format "January 2, 2006" }}</a>
|
||||
</p>
|
||||
|
||||
{{ .Content }}
|
||||
{{ .Page.RenderString .Content }}
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
|
@ -15,7 +15,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div id="content">
|
||||
{{ .Content }}
|
||||
{{ .Page.RenderString .Content }}
|
||||
</div>
|
||||
</article>
|
||||
</main>
|
||||
|
@ -20,7 +20,7 @@
|
||||
{{ with .Site.Author.email }}<author>{{ . }}{{ with $.Site.Author.name }} ({{ . }}){{ end }}</author>{{ end }}
|
||||
<guid>{{ .Permalink }}</guid>
|
||||
<description>
|
||||
{{ .Content | html }}
|
||||
{{ .Page.RenderString .Content | html }}
|
||||
</description>
|
||||
</item>
|
||||
{{ end }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user