mirror of
https://github.com/jgthms/bulma
synced 2026-03-15 02:04:29 -07:00
Xml Escape for Author Name
The following xml contains a unescaped "&", which is not valid:
<author>
<name>Bulma: Free, open source, & modern CSS framework based on Flexbox</name>
<email>bbxdesign@gmail.com</email>
</author>
This change should fix it.
This commit is contained in:
committed by
Jeremy Thomas
parent
4799e0bdb2
commit
a1d1cb38fa
@@ -9,7 +9,7 @@
|
|||||||
<id>{{ site.url }}</id>
|
<id>{{ site.url }}</id>
|
||||||
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
||||||
<author>
|
<author>
|
||||||
<name>{{ site.data.meta.title }}</name>
|
<name>{{ site.data.meta.title | xml_escape }}</name>
|
||||||
<email>bbxdesign@gmail.com</email>
|
<email>bbxdesign@gmail.com</email>
|
||||||
</author>
|
</author>
|
||||||
<atom:link href="{{ site.url }}/atom.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="{{ site.url }}/atom.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|||||||
Reference in New Issue
Block a user