1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00
Files
tabler/_plugins/jekyll-json-parse.rb
2018-02-19 20:17:04 +01:00

9 lines
130 B
Ruby

require 'json'
module JsonFilter
def json_parse(input)
JSON.parse(input)
end
Liquid::Template.register_filter self
end