jekyll-algolia 1.4.4 → 1.4.5
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 +4 -4
- data/lib/jekyll/algolia/configurator.rb +5 -1
- data/lib/jekyll/algolia/version.rb +1 -1
- 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: 595e82b7237d2e00b49d8a147aca13bde1615582
|
|
4
|
+
data.tar.gz: e2ac1d6b57b35e42ff4815ba17555d6a14e8ab65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69597c2b471dff59c642a89b9a63ba4d65fe8ff2eb572f309efc4298d2c546dc21e0f9144f3d3861574f1afc3db9d313718599cd9d1f1615710464f1db7090ec
|
|
7
|
+
data.tar.gz: da920a83407508c62b1b0747ea6b1b29e156fcb4fce3aa3241198fd0556054a298fedab168a973bbc6262eacff7be9e805282b2cd01e152f93892164dd3d1000
|
|
@@ -253,9 +253,13 @@ module Jekyll
|
|
|
253
253
|
# Disable archive pages from jekyll-archives
|
|
254
254
|
config['jekyll-archives'] = nil
|
|
255
255
|
|
|
256
|
-
# Disable
|
|
256
|
+
# Disable pagination from jekyll-paginate
|
|
257
257
|
config['paginate'] = nil
|
|
258
258
|
|
|
259
|
+
# Disable pagination for jekyll-paginate-v2
|
|
260
|
+
config['pagination'] = {} unless config['pagination'].is_a?(Hash)
|
|
261
|
+
config['pagination']['enabled'] = false
|
|
262
|
+
|
|
259
263
|
# Disable tags from jekyll-tagging
|
|
260
264
|
config['tag_page_dir'] = nil
|
|
261
265
|
config['tag_page_layout'] = nil
|