Dear Teammates,
I have a template which uses parameters, for example {{{2}}} for it's second argument, which is a url. Some url's are similar to this with a query string: http://myserver.com/index.aspx?com=85&id=20.
I figured out that "=" was messing up the template code, so I substituted it's hex equivalent "%3D" for both of the equal signs. Some target servers can parse this, and some can not, thus creating a problem for the users.
Is there any other way to handle this in the template, so that I would not have to substitute "%3D" in the url for the "=" sign ?
Thank you, Lori