Files
blog/_plugins/implode.rb
2016-01-13 14:53:15 +00:00

12 lines
271 B
Ruby

# adapted from
# - https://github.com/kenhkelly/kenhkelly.us/blob/master/_plugins/implode.rb
module Jekyll
module Implode
def implode(text)
"['" + text.join("', '") + "']"
end
end
end
Liquid::Template.register_filter(Jekyll::Implode)