Suite Deal
11/23/2021, 10:27 PM${result.billaddress}
does NOT respect the <br> tags that are inherent in the XML. Any suggestions?David B
11/24/2021, 1:22 AM?replace
built-in?
Otherwise maybe:
<#list result.billaddress?split('<br>') as billAddressLine>
${billAddressLine}<br />
</#list>
David B
11/24/2021, 1:25 AM<#assign inlineTemplate = result.billaddress?interpret>
<@inlineTemplate />
Suite Deal
11/24/2021, 2:26 PM