I am trying to bold certain phrases in a Play template output, but all it does is output the HTML tag:
@signs.map {sign =>
<tr>
<td>@sign(2).replaceAll(phrase, "<b>" + phrase + "</b>") <strong>(@sign(0) : @sign(1) - @sign(3))</strong> </td>
</tr>
}