class Middleman::Renderers::Liquid
def map_value(thing)
def map_value(thing) case thing when Hash stringify_recursive(thing) when Array thing.map { |v| map_value(v) } else thing end end
def map_value(thing) case thing when Hash stringify_recursive(thing) when Array thing.map { |v| map_value(v) } else thing end end