From c2a9cc79af8c5935bc95ac490b27cb0f2de0bffc Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Wed, 16 Aug 2017 16:00:16 -0400 Subject: [PATCH] Fix categories filter --- _plugins/categories.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/_plugins/categories.rb b/_plugins/categories.rb index 9f5eaaf..9a6a47b 100644 --- a/_plugins/categories.rb +++ b/_plugins/categories.rb @@ -1,5 +1,5 @@ module Jekyll - module Filters + module CategoriesFilter # Outputs a list of categories as comma-separated links. This is used # to output the category list for each post on a category page. # @@ -12,3 +12,5 @@ module Jekyll end end end + +Liquid::Template.register_filter(Jekyll::CategoriesFilter)