I have problem with Apache Velocity engine.
I have a piece of html in my template:
<p>
<span><b>${contextString}: ${context.contextTitle}</b></span>
<div style="display: flex;">
<div>${published}</div>
<div>${context.published}</div>
<div>${noWorkflow}</div>
<div>${context.reviewed}</div>
</div>
</p>
But when I test this template, Velocity seems to somehow convert those DIVs into regular display: block;
or is ignoring display: flex;
completely, displaying all items in new lines.
Why is Velocity displaying this incorrectly? Is there any way to fix this?