Correctly handle HTML description in feed
This commit is contained in:
parent
065eea72b8
commit
8d996651aa
|
@ -33,15 +33,15 @@
|
||||||
<link>{{ page.permalink | escape_xml | safe }}</link>
|
<link>{{ page.permalink | escape_xml | safe }}</link>
|
||||||
<guid>{{ page.permalink | escape_xml | safe }}</guid>
|
<guid>{{ page.permalink | escape_xml | safe }}</guid>
|
||||||
<pubDate>{{ page.date | date(format="%a, %d %b %Y %H:%M:%S %z") }}</pubDate>
|
<pubDate>{{ page.date | date(format="%a, %d %b %Y %H:%M:%S %z") }}</pubDate>
|
||||||
<description><![CDATA[{{ page.description }}]]></description>
|
<description><![CDATA[{{ page.description | safe }}]]></description>
|
||||||
<atom:link rel="http://podlove.org/deep-link" href="{{ page.permalink | escape_xml | safe }}#"/>
|
<atom:link rel="http://podlove.org/deep-link" href="{{ page.permalink | escape_xml | safe }}#"/>
|
||||||
<enclosure url="{{ get_url(path="episodes/" ~ page.slug ~ "." ~ format.ext) | escape_xml | safe }}" length="{{ episode_meta.formats[format.ext].size }}" type="{{ format.mime_type | escape_xml | safe }}"/>
|
<enclosure url="{{ get_url(path="episodes/" ~ page.slug ~ "." ~ format.ext) | escape_xml | safe }}" length="{{ episode_meta.formats[format.ext].size }}" type="{{ format.mime_type | escape_xml | safe }}"/>
|
||||||
<itunes:duration>{{ episode_meta.duration }}</itunes:duration>
|
<itunes:duration>{{ episode_meta.duration }}</itunes:duration>
|
||||||
<itunes:author>{{ config.extra.author }}</itunes:author>
|
<itunes:author>{{ config.extra.author }}</itunes:author>
|
||||||
<itunes:subtitle>{{ page.extra.subtitle }}</itunes:subtitle>
|
<itunes:subtitle>{{ page.extra.subtitle }}</itunes:subtitle>
|
||||||
<itunes:episode>{{ page.extra.episode }}</itunes:episode>
|
<itunes:episode>{{ page.extra.episode }}</itunes:episode>
|
||||||
<itunes:summary>{{ page.description }}</itunes:summary>
|
<itunes:summary><![CDATA[{{ page.description | safe }}]]></itunes:summary>
|
||||||
<content:encoded><![CDATA[<p><strong>{{ page.extra.subtitle }}</strong></p> <p>{{ page.description}}</p> {{ page.content | safe }}]]></content:encoded>
|
<content:encoded><![CDATA[<p><strong>{{ page.extra.subtitle }}</strong></p> <p>{{ page.description | safe }}</p> {{ page.content | safe }}]]></content:encoded>
|
||||||
{%- for contributor in page.extra.contributors %}
|
{%- for contributor in page.extra.contributors %}
|
||||||
<atom:contributor>
|
<atom:contributor>
|
||||||
<atom:name>{{ contributor }}</atom:name>
|
<atom:name>{{ contributor }}</atom:name>
|
||||||
|
|
Loading…
Reference in a new issue