jekyll-paginate-content 1.0.3 → 1.0.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/README.md +7 -3
- data/bin/console +1 -1
- data/jekyll-paginate-content.gemspec +1 -1
- data/lib/jekyll-paginate-content.rb +6 -0
- data/lib/{jekyll/paginate/content → jekyll-paginate-content}/documentpage.rb +0 -0
- data/lib/{jekyll/paginate/content → jekyll-paginate-content}/generator.rb +0 -0
- data/lib/{jekyll/paginate/content → jekyll-paginate-content}/pager.rb +0 -0
- data/lib/{jekyll/paginate/content → jekyll-paginate-content}/paginator.rb +0 -0
- data/lib/{jekyll/paginate/content → jekyll-paginate-content}/version.rb +1 -1
- metadata +8 -8
- data/lib/jekyll/paginate/content.rb +0 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a368a5ecaaf041db59bbfccf429d4f3f99be19f
|
|
4
|
+
data.tar.gz: 267e320de472fd9c29ee5f8983a429c6f16ecf55
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1fc990bc920130af1e51a4128b95404b535d4124f6ce8516bc96aaf5ee45dc05bff8355ad7a11bc0e2e0e8e008f0116527688074f2b2f908c56f83909632207b
|
|
7
|
+
data.tar.gz: 49259cc0c9a665344ff637b67530d6e507a5376b401b20f737517be079746988a6428948f40ba91144cb8d6fd922869d07e64871ef69a4f124cbc18eead83327
|
data/README.md
CHANGED
|
@@ -133,7 +133,10 @@ See other [demos](#demos).
|
|
|
133
133
|
|
|
134
134
|
## What's new?
|
|
135
135
|
|
|
136
|
+
v1.0.4 Allow inclusion in `_config.yml` plugins
|
|
137
|
+
|
|
136
138
|
v1.0.3 Bugfixes; force option
|
|
139
|
+
|
|
137
140
|
v1.0.2 Don't regenerate unnecessarily
|
|
138
141
|
|
|
139
142
|
## Installation
|
|
@@ -196,7 +199,6 @@ paginate_content:
|
|
|
196
199
|
# If a section is too short, the next section will be merged
|
|
197
200
|
# Default: none
|
|
198
201
|
|
|
199
|
-
|
|
200
202
|
title: ':title - :num/:max' # Title format of the split pages, default: original title
|
|
201
203
|
# :num and :max are as in permalink,
|
|
202
204
|
# :title is the original title
|
|
@@ -865,7 +867,9 @@ Everyone interacting in the Jekyll::Paginate::Content project's codebases, issue
|
|
|
865
867
|
|
|
866
868
|
## Also by the Author
|
|
867
869
|
|
|
868
|
-
[Jekyll
|
|
870
|
+
[Jekyll::Stickyposts](https://github.com/ibrado/jekyll-stickyposts) - Move/pin posts tagged `sticky: true` before all others. Sorting on custom fields supported; collection and paginator friendly.
|
|
871
|
+
|
|
872
|
+
[Jekyll::Tweetsert](https://github.com/ibrado/jekyll-tweetsert) - Turn tweets into Jekyll posts. Multiple timelines, filters, hashtags, automatic category/tags, and more!
|
|
869
873
|
|
|
870
|
-
[Jekyll
|
|
874
|
+
[Jekyll::ViewSource](https://github.com/ibrado/jekyll-viewsource) - Generate pretty or plain HTML and/or Markdown source code pages.
|
|
871
875
|
|
data/bin/console
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
3
|
require "bundler/setup"
|
|
4
|
-
require "jekyll
|
|
4
|
+
require "jekyll-paginate-content"
|
|
5
5
|
|
|
6
6
|
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
7
|
# with your gem easier. You can also use a different console, if you like.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
lib = File.expand_path("../lib", __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require "jekyll
|
|
4
|
+
require "jekyll-paginate-content/version"
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "jekyll-paginate-content"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-paginate-content
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Ibrado
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01-
|
|
11
|
+
date: 2018-01-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -60,12 +60,12 @@ files:
|
|
|
60
60
|
- bin/console
|
|
61
61
|
- bin/setup
|
|
62
62
|
- jekyll-paginate-content.gemspec
|
|
63
|
-
- lib/jekyll
|
|
64
|
-
- lib/jekyll
|
|
65
|
-
- lib/jekyll
|
|
66
|
-
- lib/jekyll
|
|
67
|
-
- lib/jekyll
|
|
68
|
-
- lib/jekyll
|
|
63
|
+
- lib/jekyll-paginate-content.rb
|
|
64
|
+
- lib/jekyll-paginate-content/documentpage.rb
|
|
65
|
+
- lib/jekyll-paginate-content/generator.rb
|
|
66
|
+
- lib/jekyll-paginate-content/pager.rb
|
|
67
|
+
- lib/jekyll-paginate-content/paginator.rb
|
|
68
|
+
- lib/jekyll-paginate-content/version.rb
|
|
69
69
|
- res/ajni-trail-p1.png
|
|
70
70
|
- res/ajni-trail-p4.png
|
|
71
71
|
- res/jpv2-trail.png
|