Skip to content

Commit

Permalink
Updated Atom.xml to use correct namespace
Browse files Browse the repository at this point in the history
As per https://tools.ietf.org/html/rfc4287#section-1.2, the correct xml namespace is "http://www.w3.org/2005/Atom", which some feed validators will validate against, even though the "https" version of that URL is also valid.  

fixes #104
  • Loading branch information
Kritner authored Nov 12, 2019
1 parent a82dc89 commit 6dd8ea4
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
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="https://www.w3.org/2005/Atom">
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ config.title }}</title>
{% if icon %}<icon>{{ icon }}</icon>{% endif %}
{% if config.subtitle %}<subtitle>{{ config.subtitle }}</subtitle>{% endif %}
Expand Down

0 comments on commit 6dd8ea4

Please sign in to comment.