jekyll-webmention_io 2.0.12 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 672d103d7af89eb78fc8881d15b01eaca2baf478
|
4
|
+
data.tar.gz: d485382ea200b239585a503544b1d369f2206fb0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b222875c7301ad0756e548c6d1b9a67787fd6d292b7db1f3d3d4370c2ee2b8ab151fb86aa70e1760aebdcef1376a83d036733e3c084a2277c9bd8d12b2b3d411
|
7
|
+
data.tar.gz: beaf1fe3a89efc69c43d9397f06c17a2335a01383ec000ddaa93115b7c8c8f3a77adfd6d42cfae40292930f3fe9b5463df72c04adc076f4651bb1001003b8942
|
@@ -12,6 +12,11 @@ module Jekyll
|
|
12
12
|
priority :high
|
13
13
|
|
14
14
|
def generate(site)
|
15
|
+
if site.config['webmentions']['pause_lookups'] == true
|
16
|
+
Jekyll::WebmentionIO::log 'info', 'Webmention lookups are currently paused.'
|
17
|
+
return
|
18
|
+
end
|
19
|
+
|
15
20
|
Jekyll::WebmentionIO::log 'info', 'Beginning to gather webmentions of your posts. This may take a while.'
|
16
21
|
|
17
22
|
Jekyll::WebmentionIO::set_api_endpoint('mentions')
|
@@ -12,6 +12,11 @@ module Jekyll
|
|
12
12
|
priority :low
|
13
13
|
|
14
14
|
def generate(site)
|
15
|
+
if site.config['webmentions']['pause_lookups'] == true
|
16
|
+
Jekyll::WebmentionIO::log 'info', 'Webmention lookups are currently paused.'
|
17
|
+
return
|
18
|
+
end
|
19
|
+
|
15
20
|
Jekyll::WebmentionIO::log 'info', 'Beginning to gather webmentions you’ve made. This may take a while.'
|
16
21
|
|
17
22
|
webmentions = {}
|