We need to give users the ability to define letter paragraphs with placeholders for inserting data which appear within square brackets. For example, [item_1.item_id]. This works fine in plain text. However, when a placeholder is put inside of the href URL for an anchor-tag, the resulting HTML
is sometimes incorrect - the URL from the anchor-tag appears twice.
This seems to consistently happen when the anchor-tag is copied (from IE or notepad) and pasted into the editor. Pasting <a href="http://server/service/endpoint/123?Param=[item_1.item_id]">My Link</a> into the editor generates the URL twice. Manually typing the same anchor-tag in the editor only generates the URL once.
Any suggestions on how to workaround this issue?
Thanks.