mirror of
https://github.com/Fishwaldo/huginn.git
synced 2025-03-16 03:41:41 +00:00
8 lines
353 B
Ruby
8 lines
353 B
Ruby
module Liquid
|
|
# https://github.com/Shopify/liquid/pull/623
|
|
remove_const :PartialTemplateParser
|
|
remove_const :TemplateParser
|
|
|
|
PartialTemplateParser = /#{TagStart}.*?#{TagEnd}|#{VariableStart}(?:(?:[^'"{}]+|#{QuotedString})*?|.*?)#{VariableIncompleteEnd}/m
|
|
TemplateParser = /(#{PartialTemplateParser}|#{AnyStartingTag})/m
|
|
end
|