Replies: 1 comment
-
I think this is a good idea and had similar thoughts. If we add power filters #153 I think we should consider adding some escaping. The tag names data has been kind of dangerously undefined and I think it is going to bite us in the long run. EDIT I will add such change IMO would have to be a 2.0 change. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Add an escaping character for protecting reserved characters. Doing thing could solve corner case issues:
/^#<
...)The character
\
is a good candidate.For example,
a.b
could address the fieldb
ina
wherea\.b
address the fielda.b
.Other example
{{\#main}}
access the field#main
.Beta Was this translation helpful? Give feedback.
All reactions