fix quirky negative sign expression markup parsing

This commit is contained in:
Michael Go
2025-01-07 14:32:07 -04:00
parent 1de6025362
commit 0b1dc295ff
3 changed files with 16 additions and 3 deletions
+2 -1
View File
@@ -57,7 +57,8 @@ module Liquid
'true' => true,
'false' => false,
'blank' => '',
'empty' => ''
'empty' => '',
'-' => VariableLookup.parse("-")
}.freeze
DOT = ".".ord