Freemarker compress single_line without spaces
问题 It seems that <@compress single_line=true> is replacing line breaks with single spaces (" "), instead of just suppressing them. Example: <@compress single_line=true> "First cell" <#if something > |"Second cell" </#if> |"Third cell" </@compress> Is printing: "First cell" |"Second cell" |"Third cell" Which can't be parsed by a legacy system just because of the spaces between the pipes. Is there any way to avoid this?, perhaps a way to read every "nested" line in a macro to substitute the