How to escape dynamic hyperlink in BIP RTF template?
I want to create a HTML report with a "Back" button to go back to the TOC section but RTF would automatically add sequential number to the bookmark name. Here is my layout of the HTML in the Word RTF template:
Bookmark: TOC <a name=TOC></a>
....
For each domain_code
Domain: {Domain_code} Back (which is hyperlinked to TOC)
Col1, Col2,...
end for each
The RFT would render the
Domain: ABC <a href="#TOC_1">Back</a>
....
Domain: ABC <a href="#TOC_2">Back</a>
...
Domain: XYZ <a href="#TOC_10">Back</a>
How could I make RTF do not add the sequential number to the TOC? It seems that if the hyperlink is with a repeating group (for each), it would interpret the # sign as to add sequential number to the end of the bookmark. This made the Back link does not link back to the TOC. Is there an escape character in RFT allowing me to escape #. Is there other way to create a back link to jump to TOC section?