Skip to content

Instantly share code, notes, and snippets.

module Jekyll
class CategoryAwarePrevNextGenerator < Generator
safe true
priority :high
def generate(site)
site.categories.each_pair do |category_name, posts|
posts.sort! { |a, b| a <=> b }