Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README-GENERATOR.md #260

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README-GENERATOR.md
Original file line number Diff line number Diff line change
Expand Up @@ -666,3 +666,17 @@ pagination:
```

Make absolutely sure that your pagination permalink paths do not clash with any other paths in your final site. For simplicity it is recommended that you keep all custom pagination (non root index.html) in a single or multiple separate sub folders under your site root.

There is also a known issue in Jekyll v4 that affects `jekyll-paginate-v2`, where different pagination pages’ layouts may not be rendered correctly and that only the first pagination layout in cache is used (reference: [issue #209](https://github.com/sverrirs/jekyll-paginate-v2/issues/209)). To temporarily resolve this issue, use the fix provided in [issue #195](https://github.com/sverrirs/jekyll-paginate-v2/pull/195) or [issue #182](https://github.com/sverrirs/jekyll-paginate-v2/pull/182) instead.

In your `Gemfile`:
```ruby
# Before change
gem 'jekyll-paginate-v2'

# After change, fix option 1 from issue #195
gem 'jekyll-paginate-v2', git: 'https://github.com/jameshi16/jekyll-paginate-v2.git', branch: 'cache-mismatch-error'

# OR after change, fix option 2 from #182
gem 'jekyll-paginate-v2', git: 'https://github.com/mohkale/jekyll-paginate-v2.git', branch: 'liquid-cache-bypass'
```