Replies: 1 comment
-
Just to inform that I did the same test on version |
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.
Uh oh!
There was an error while loading. Please reload this page.
-
(I'm not sure if I came up with the best possible title. I can improve it later, if I get better ideas how to summarise this thing.)
From SC
0.7.0
onwards, special characters in variable values are escaped (#11). This is usually a good thing, but there are exceptions, too. Particularly, the separator parameter of{{tags:separator}}
variable suffers from escaping.The {{tags:separator}} escaping issue
Quote from me: #96 (reply in thread)
2022-02-07 added comments:
No. I think it would be technically hard and unclean to bring the escaping to a level where a variable handle's its arguments. Currently, variable value escaping is done after a variable has generated its value, and a variable has no way to control the escaping in it's scope. It's a clean and simple way, and I'd like to keep it that way.
Again, no, because that would also require moving the escaping mechanism in variable code space. Too messy!
Yes. More on that below
Possible solutions
I haven't yet had any strong ideas on how I will solve this problem.The above quote contains some ideas, but I need to think about them more.2022-02-07 I got one idea that is described in #147. This discussion #105 will concentrate on developing
->join()
method.Beta Was this translation helpful? Give feedback.
All reactions