Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: rabbottI'd like to insert hyperlink text as table row data using the following standard format:
<tr><td><a href="http://localhost">text</a></td></tr>
However, the HTML and XML nodes escape the control characters. From the help file:
"All data will be converted to text, and the four control characters will be escaped as " ("), & (&), < (<), and > (>).
If more control over the format of the output is needed, use the core node Output XML, which this node inherits from."
The XML node help also says "All data will be converted to text, and the four control characters will be escaped as " ("), & (&), < (<), and > (>)", so using the XML node, it's still not clear how one might override the escape of control characters.
For example, I'm getting the following output from the HTML node:
<TR>
<TD>7</TD>
<TD><blank>||<blank></TD>
<TD>FMS in Red</TD>
<TD><a href="
https://na3.salesforce.com/5005000000BMiK0AAL">00001351</a></TD>
<TD>2011</TD>
</TR>
what I want is:
<TR>
<TD>7</TD>
<TD><blank>||<blank></TD>
<TD>FMS in Red</TD>
<TD><a href="
https://na3.salesforce.com/5005000000BMiK0AAL">00001351</a></TD>
<TD>2011</TD>
</TR>
Thanks,
- Bob