class Liquid::Expression
Constants
- EXTRA_LITERALS
Public Class Methods
parse(markup)
click to toggle source
# File lib/locomotive/steam/liquid/patches.rb, line 21 def self.parse(markup) if EXTRA_LITERALS.key?(markup) EXTRA_LITERALS[markup] else parse_without_extra_literals(markup) end end
Also aliased as: parse_without_extra_literals