We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b89a7a commit b4e33edCopy full SHA for b4e33ed
gixy/parser/raw_parser.py
@@ -56,7 +56,7 @@ def script(self):
56
keyword = Word(alphanums + ".+-_/")
57
path = Word(alphanums + ".-_/")
58
variable = Word("$_-" + alphanums)
59
- value_wq = Regex(r'(?:\([^\s;]*\)|\$\{\w+\}|[^\s;(){}])+')
+ value_wq = Regex(r'(?:\([^\s;]*\)|\$\{\w+\}|\\[(){};\s]|[^\s;{}])+')
60
value_sq = NginxQuotedString(quoteChar="'")
61
value_dq = NginxQuotedString(quoteChar='"')
62
value = (value_dq | value_sq | value_wq)
0 commit comments