Ibralogue
Ibralogue copied to clipboard
[Feature] Escape Characters
Is your feature request related to a problem? Please describe. Currently, there is no way to escape reserved syntax if one wants to use it in a sentence. i.e:
<<DialogueName: Init>>
# this is parsed as a function invocation, even if i would not want it to be
[NPC]
<<Hi, how are you?>>
Describe the solution you'd like
Make a dedicated escape character like \
to escape the syntax in these kinds of situations like these, which would be used like so:
<<DialogueName: Init>>
# the escape character escapes the invocation and is not displayed in the actual sentence
[NPC]
\<<Hi, how are you?>>