mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 17:34:25 +04:00
9 lines
130 B
Ruby
9 lines
130 B
Ruby
require 'json'
|
|
|
|
module JsonFilter
|
|
def json_parse(input)
|
|
JSON.parse(input)
|
|
end
|
|
|
|
Liquid::Template.register_filter self
|
|
end |