Allow to add quotes into stringLiteral parameters #122
Labels
bug
Something isn't working
enhancement
New feature or request
help wanted
Extra attention is needed
Is your feature request related to a problem? Please describe.
I'm using a custom tag that has a string parameter. If this parameter includes a quote, this is interpreted as final quote for the parameter, although it's escaped. For example:
#tag("value", "this is a \"custom\" parameter")
for the second parameter, LeafLexer parses it as
this is a \
instead ofthis is "custom" parameter
Describe the solution you'd like
I would like to allow quotes inside parameters using escape characters or other option.
The text was updated successfully, but these errors were encountered: