jekyll-atom-feed 0.18.0 → 0.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.markdown +9 -1
- data/README.md +0 -11
- data/lib/jekyll-atom-feed/feed.xml +1 -10
- data/lib/jekyll-atom-feed/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d313605363384b03c253bb2a4d7cb6ba66b8a8fd420c75929253fe598083744b
|
4
|
+
data.tar.gz: 63ae3562408148afb733f8003428984ddb1ef33a054bd8f1c4f35e0fb72080d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0cdd9e8c65079dcddbb75a43acd3487ddf4b46ad977fe863554513418d6ae16847a4fb040e4c890824c92484b30ddbe3509de5269624539a3da9a9f56704d54
|
7
|
+
data.tar.gz: 895567347c0253ba95afec511230c03e176d9c68fdefc7e794d60445abf70ff42ee7381ac83902d6bf164b7cc1b1a46650665fa050f9c2f9565564ff77a0866a
|
data/History.markdown
CHANGED
@@ -1,6 +1,14 @@
|
|
1
1
|
## HEAD
|
2
2
|
|
3
|
-
## 0.
|
3
|
+
## 0.19.0 / 2023-09-13
|
4
|
+
|
5
|
+
### Minor Enhancements
|
6
|
+
|
7
|
+
* Remove Webfeeds as they dont even use it for their blog feed
|
8
|
+
|
9
|
+
## 0.18.0 / 2023-09-07
|
10
|
+
|
11
|
+
### Minor Enhancements
|
4
12
|
|
5
13
|
* Integrate Webfeeds for better Feedly integration
|
6
14
|
* Provide a template configuration option to overwrite feed.xml template
|
data/README.md
CHANGED
@@ -34,17 +34,6 @@ The plugin will automatically use any of the following configuration variables,
|
|
34
34
|
* `url` - The URL to your site, e.g., `https://example.com`. If none is provided, the plugin will try to use `site.github.url`.
|
35
35
|
* `author` - Global author information (see below)
|
36
36
|
|
37
|
-
If you want to enrich your feed for [Feedly](https://feedly.com), create the following object with any of these optional values:
|
38
|
-
```yml
|
39
|
-
webfeeds:
|
40
|
-
icon: # path to a 96x96 favicon
|
41
|
-
logo: # path to a 30px height svg
|
42
|
-
cover: # path to a large 16:9 banner image
|
43
|
-
accent_color: # hex colour without the hash
|
44
|
-
related: # true = show other stories from your feed under yours
|
45
|
-
analytics: # Google Analytics UA-x tracking ID
|
46
|
-
```
|
47
|
-
|
48
37
|
### Already have a feed path?
|
49
38
|
|
50
39
|
Do you already have an existing feed someplace other than `/feed.xml`, but are on a host like GitHub Pages that doesn't support machine-friendly redirects? If you simply swap out `jekyll-atom-feed` for your existing template, your existing subscribers won't continue to get updates. Instead, you can specify a non-default path via your site's config.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
{% if page.xsl %}
|
3
3
|
<?xml-stylesheet type="text/xml" href="{{ '/feed.xslt.xml' | absolute_url }}"?>
|
4
4
|
{% endif %}
|
5
|
-
<feed xmlns="http://www.w3.org/2005/Atom" {% if site.
|
5
|
+
<feed xmlns="http://www.w3.org/2005/Atom" {% if site.lang %}xml:lang="{{ site.lang }}"{% endif %}>
|
6
6
|
<generator uri="https://jekyllrb.com/" version="{{ jekyll.version }}">Jekyll</generator>
|
7
7
|
<link href="{{ page.url | absolute_url }}" rel="self" type="application/atom+xml" />
|
8
8
|
<link href="{{ '/' | absolute_url }}" rel="alternate" type="text/html" {% if site.lang %}hreflang="{{ site.lang }}" {% endif %}/>
|
@@ -39,15 +39,6 @@
|
|
39
39
|
</author>
|
40
40
|
{% endif %}
|
41
41
|
|
42
|
-
{% if site.webfeeds %}
|
43
|
-
{% if site.webfeeds.icon %}<webfeeds:icon>{{ site.webfeeds.icon }}</webfeeds:icon>{% endif %}
|
44
|
-
{% if site.webfeeds.logo %}<webfeeds:logo>{{ site.webfeeds.logo }}</webfeeds:logo>{% endif %}
|
45
|
-
{% if site.webfeeds.cover %}<webfeeds:cover>{{ site.webfeeds.cover }}</webfeeds:cover>{% endif %}
|
46
|
-
{% if site.webfeeds.accent_color %}<webfeeds:accentColor>{{ site.webfeeds.accent_color }}</webfeeds:accentColor>{% endif %}
|
47
|
-
{% if site.webfeeds.related %}<webfeeds:related layout="card" target="browser"/>{% endif %}
|
48
|
-
{% if site.webfeeds.analytics %}<webfeeds:analytics id="{{ site.webfeeds.analytics }}" engine="GoogleAnalytics" />{% endif %}
|
49
|
-
{% endif %}
|
50
|
-
|
51
42
|
{% if page.tags %}
|
52
43
|
{% assign posts = site.tags[page.tags] %}
|
53
44
|
{% else %}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-atom-feed
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jaime Bautista
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
11
|
+
date: 2023-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|