Skip to content

Commit

Permalink
Merge pull request #5 from aprescott/atom-feed-xml-escape
Browse files Browse the repository at this point in the history
Escape post.title in atom.xml
  • Loading branch information
indirect authored Feb 28, 2018
2 parents 4168c6c + 2c4acbc commit c25dca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ layout: null

{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<title>{{ post.title | xml_escape }}</title>
<link href="http://blog.rubygems.org{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://blog.rubygems.org{{ post.id }}</id>
Expand Down

0 comments on commit c25dca6

Please sign in to comment.