Files
2015-11-09 16:05:57 -08:00

10 lines
136 B
Ruby

module Jekyll
module ORFilter
def or(a, b)
a = a || b
end
end
end
Liquid::Template.register_filter(Jekyll::ORFilter)