mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-20 03:10:39 -07:00
Fixed ranges and added for loop parser
This commit is contained in:
+3
-1
@@ -7,7 +7,9 @@ module Liquid
|
||||
':' => :colon,
|
||||
',' => :comma,
|
||||
'[' => :open_square,
|
||||
']' => :close_square
|
||||
']' => :close_square,
|
||||
'(' => :open_round,
|
||||
')' => :close_round
|
||||
}
|
||||
IDENTIFIER = /[\w\-?!]+/
|
||||
SINGLE_STRING_LITERAL = /'[^\']*'/
|
||||
|
||||
Reference in New Issue
Block a user