fix: xml escape title
This commit is contained in:
parent
28b949bc89
commit
711f76e531
2
feed.xml
2
feed.xml
|
@ -16,7 +16,7 @@ layout: null
|
||||||
|
|
||||||
{% for post in site.posts %}
|
{% for post in site.posts %}
|
||||||
<entry>
|
<entry>
|
||||||
<title>{{ post.title }}</title>
|
<title>{{ post.title | xml_escape }}</title>
|
||||||
<link href="http://fnordig.de{{ post.url }}"/>
|
<link href="http://fnordig.de{{ post.url }}"/>
|
||||||
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
||||||
<id>http://fnordig.de{{site.baseurl}}{{ post.url | replace_first: '/'}}</id>
|
<id>http://fnordig.de{{site.baseurl}}{{ post.url | replace_first: '/'}}</id>
|
||||||
|
|
Loading…
Reference in a new issue