We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1c2002a + 1ce829e commit 173a827Copy full SHA for 173a827
spec/expressions.yml
@@ -208,6 +208,15 @@ tests:
208
result:
209
bar: -10
210
211
+ - desc: single-quoted and double-quoted string literal
212
+ scope:
213
+ template:
214
+ foo: $ 'foo'
215
+ bar: $ "bar"
216
+ result:
217
+ foo: foo
218
+ bar: bar
219
+
220
# - desc: union operator performs union operation on it\'s operands
221
# scope:
222
# <<: *goessner
src/jute/core.cljc
@@ -253,7 +253,7 @@ null-literal
253
= 'null' !path-head-comp
254
255
string-literal
256
- = <'\"'> #'[^\"]*' <'\"'>
+ = <'\"'> #'[^\"]*' <'\"'> | <\"'\"> #\"[^']*\" <\"'\">
257
"
258
:auto-whitespace :standard))
259
0 commit comments