forked from deepStateMirrors/tabi
🐛 fix: allow quotation in page summary
Quotation marks were being escaped, as the `safe` filter was not being used.
This commit is contained in:
parent
f5f195c90c
commit
22925caf06
3 changed files with 4 additions and 4 deletions
|
@ -69,8 +69,8 @@
|
|||
<meta name="description" content="{{ section.description }}" />
|
||||
<meta property="og:description" content="{{ section.description }}" />
|
||||
{%- elif page.summary %}
|
||||
<meta name="description" content="{{ page.summary | striptags | safe | trim_end_matches(pat=".") }}…" />
|
||||
<meta property="og:description" content="{{ page.summary | striptags | safe | trim_end_matches(pat=".") }}…" />
|
||||
<meta name="description" content="{{ page.summary | striptags | trim_end_matches(pat=".") | safe }}…" />
|
||||
<meta property="og:description" content="{{ page.summary | striptags | trim_end_matches(pat=".") | safe }}…" />
|
||||
{%- else %}
|
||||
<meta name="description" content="{{ config.description }}" />
|
||||
<meta property="og:description" content="{{ config.description }}" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue