tipsy / j2html

Java to HTML generator. Enjoy typesafe HTML generation.

Home Page:https://j2html.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HTML encoding

Ksoso opened this issue · comments

Hi,
First of all, thanks for great work with easy to handle java library.

I got problem, i can't render euro money (€) sign with withText() method. It is even possible to put into tags some special characters ?

commented

Hi @Ksoso, which version are you using?
0.5.0 had a very naive escaping method, but 0.7 uses Apache Commons. You can always use with(unsafeHtml("€")) to avoid escaping altogether.

It's working great, thanks.