VIVO-962: <p> tags were getting stripped out when they shouldn't have been.

This commit is contained in:
Tim Worrall 2015-02-12 11:10:37 -05:00
parent 86d4ed6506
commit 823133688a

View file

@ -17,7 +17,7 @@
<#assign theValue = theValue?replace("<ol>","<ol class='tinyMCENumeric'>") />
</#if>
<#if theValue?contains("<p>") >
<#assign theValue = theValue?replace("<p>","")?replace("</p>","") />
<#assign theValue = theValue?replace("<p>","<p style='margin-bottom:.6em'>") />
</#if>
${theValue}
</#macro>