jekyll-algolia 1.4.3 → 1.4.4
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 +8 -0
- data/lib/jekyll/algolia/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5b52d7f62ae6dd1f198c4849a2d841e92f5ec2aa
|
|
4
|
+
data.tar.gz: 80b8c48423f6198bea13f1e6d667adcd7a4f6d5c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a73bb30adde7902d4ff8e5e8ebb6afbdb048ae256a8ba906c7dfbb3b4a98b18872918b1b1e648df94ea48a54babb8a8bc40700b76d1ea18360568e33b3479447
|
|
7
|
+
data.tar.gz: 4978b86e85218c56e25e1420c92adace13bd72804a2d8ffefb1bb42a380f821b2d4d761ff3cdd9b4d162632b448fceac13c5a707c428d8273bdc9165bc242941
|
|
@@ -244,10 +244,18 @@ module Jekyll
|
|
|
244
244
|
|
|
245
245
|
# Public: Disable features from other Jekyll plugins that might interfere
|
|
246
246
|
# with the indexing
|
|
247
|
+
# Note that if other jekyll plugins are defined as part of the
|
|
248
|
+
# :jekyll_plugins group in the Gemfile, we might be able to override them
|
|
249
|
+
# using .load_overwrites in .load_overwrites in jekyll-algolia.rb.
|
|
250
|
+
# If they are simply required in Gemfile, then we might need to revert
|
|
251
|
+
# their values to nil values from here
|
|
247
252
|
def self.disable_other_plugins(config)
|
|
248
253
|
# Disable archive pages from jekyll-archives
|
|
249
254
|
config['jekyll-archives'] = nil
|
|
250
255
|
|
|
256
|
+
# Disable paginatio from jekyll-paginate
|
|
257
|
+
config['paginate'] = nil
|
|
258
|
+
|
|
251
259
|
# Disable tags from jekyll-tagging
|
|
252
260
|
config['tag_page_dir'] = nil
|
|
253
261
|
config['tag_page_layout'] = nil
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-algolia
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Carry
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-07-
|
|
11
|
+
date: 2018-07-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: algolia_html_extractor
|