jekyll-feed 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/jekyll-feed.gemspec +1 -1
- data/lib/feed.xml +2 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e139aaf84006d6110f88c43f380726b3028c66ed
|
4
|
+
data.tar.gz: 21d552974a24f198dcec3eb22c4b831dd08ea8ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c371aeccdf1af970cc6ea6b4ea3eb7f50a52bb44df7c0a6a3f372740636b387ac4bcfa29f9576bd5a97a849bae4a5f41b53d43d875011c7d3c6e6ff171cbe9c
|
7
|
+
data.tar.gz: 1f3d406819b2b2f80171ed7476aeea135599593e0ba3362a17fdc99f4a86700c25ed3921be9f007c821b41d2e9659936e61fe49bfbdecbb9fe04567cfe103dce
|
data/jekyll-feed.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = "jekyll-feed"
|
5
|
-
spec.version = "0.2.
|
5
|
+
spec.version = "0.2.1"
|
6
6
|
spec.authors = ["Ben Balter"]
|
7
7
|
spec.email = ["ben.balter@github.com"]
|
8
8
|
spec.summary = "A Jekyll plugin to generate an Atom feed of your Jekyll posts"
|
data/lib/feed.xml
CHANGED
@@ -30,9 +30,7 @@
|
|
30
30
|
<email>{{ site.author.email | xml_escape }}</email>
|
31
31
|
{% endif %}
|
32
32
|
{% if site.author.uri %}
|
33
|
-
|
34
|
-
{% elsif site.author.url %}
|
35
|
-
</uri>{{ site.author.url | xml_escape }}</uri>
|
33
|
+
<uri>{{ site.author.uri | xml_escape }}</uri>
|
36
34
|
{% endif %}
|
37
35
|
</author>
|
38
36
|
{% endif %}
|
@@ -62,9 +60,7 @@
|
|
62
60
|
<email>{{ post.author.email | xml_escape }}</email>
|
63
61
|
{% endif %}
|
64
62
|
{% if post.author.url %}
|
65
|
-
|
66
|
-
{% elsif post.author.url %}
|
67
|
-
</uri>{{ post.author.url | xml_escape }}</uri>
|
63
|
+
<uri>{{ post.author.url | xml_escape }}</uri>
|
68
64
|
{% endif %}
|
69
65
|
</author>
|
70
66
|
{% endif %}
|