I'm just looking for a technique for using basic HTML formatting inside Vaadin 14 Grid TemplateRenderers.
I use many ComponentRenderers that I want to change to TemplateRenderers to improve performance.
My problem is I have a lot of "free form" HTML formatting in the text that is easy to do in ComponentRenderer such as ...
new Span(new Html("<p>Some <b> formatted </b>text</p>"));
What is a normal syntax or technique to put that in via TemplateRenderer withProperty(...)?
I think just need it to do the same job as new Html(...)
Any information much appreciated.