Suite Deal
07/30/2021, 2:04 PMTIM TESTER
<br>
123 MAIN STREET
<br>
CHICAGO, IL 63022
Attempts
#1
<table border="0" cellpadding="1" cellspacing="1" style="width:100%;">
<#list result.custentity_long_text_address?split("<br />") as z>
<tr>
<td>${z}<br /></td>
</tr></#list></table>
#2
<table border="0" cellpadding="1" cellspacing="1" style="width:100%;">
<#list result.custentity_long_text_address?split("<br>") as z>
<tr>
<td>${z}<br /></td>
</tr></#list></table>
#3 (without table)
${result.custentity_long_text_address?replace("<br>", "<br />")}
Shubi
08/02/2021, 1:22 AMSuite Deal
08/02/2021, 2:08 AM