How can I add HTML tags into a th:text so the tags become visual?
An example of this would be the following:
A view variable called htmlcode gets injected with the value
<b>bla</b>
The view itself looks like
<div th:text="*{htmlcode}"><p>defaultcode</p></div>
Now I want the result to be something like
<div><b>bla</b></div>