scottvonduhn
08/18/2023, 4:45 PM<small>Tier 1: 0<br />Tier 2: 100</small>
Selcuk Dogru
08/18/2023, 10:44 PMrecord.myfield?replace(">", ">")?replace("<", "<")?interpret
NickSuite
08/21/2023, 3:18 AMscottvonduhn
08/21/2023, 12:53 PMrecord.memo?replace(">", ">")?replace("<", "<")
worked perfectly (no need for interpret).
No idea why the no escape directives don’t work, it would have been much more simple that way, but glad something did. Thank for the great suggestion!scottvonduhn
08/21/2023, 12:59 PM<#function unescape html_text>
<#return html_text?replace(">", ">")?replace("<", "<")>
</#function>
...
${unescape(record.memo)}
Selcuk Dogru
08/21/2023, 1:58 PM