Jekyll::Paginate V2

Pagination gem built specially for Jekyll 3 and newer that is fully backwards compatible and serves as an enhanced replacement for the previously built-in jekyll-paginate gem. View it on rubygems.org.

Gem

The code was based on the original design of jekyll-paginate and features were sourced from discussions such as #27 (thanks Günter Kits).

"Be excellent to each other"

:heart:

Installation

gem install j1-paginator

Update your _config.yml and pages.

Although fully backwards compatible, to enable the new features this gem needs slightly extended site yml configuration and miniscule additional new front-matter for the pages to paginate on.

Now you're ready to run jekyll serve and your paginated files should be generated.

Please see the Examples for tips and tricks on how to configure the pagination logic.

:warning: Please note that this plugin is currently NOT supported by GitHub pages. Here is a list of all plugins supported. There is work underway to try to get it added it but until then please follow this GitHub guide to enable it or use Travis CI.

GitLab supposedly supports any plugin.

Pagination Generator

The Pagination Generator forms the core of the pagination logic. Calculates and generates the pagination pages.

Auto Pages

The Auto-Pages is an optional feature that auto-magically generates paginated pages for all your tags, categories and collections.

Issues / to-be-completed

  • Unit-tests do not cover all critical code paths
  • No integration tests yet #2
  • Exclude filter not implemented #6
  • Elegant way of collecting and printing debug information during pagination

I welcome all testers and people willing to give me feedback and code reviews.

Contributing

Although this project is small it has a code of conduct that I hope everyone will do their best to follow when contributing to any aspects of this project. Be it discussions, issue reporting, documentation or programming.

If you don't want to open issues here on Github, send me your feedback by email at [email protected].

  1. Fork it ( https://github.com/sverrirs/j1-paginator/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Run the unit tests (rake)
  4. Commit your changes (git commit -am 'Add some feature')
  5. Build the gem locally (gem build j1-paginator.gemspec)
  6. Test and verify the gem locally (gem install ./j1-paginator-x.x.x.gem)
  7. Push to the branch (git push origin my-new-feature)
  8. Create new Pull Request

Note: This project uses semantic versioning.