Is there a library in JAVA where I can encode HTML, but only content?
I have like
<div>Tél</div>
and I only want
<div>Tél</div>
instead of
<div>Tél<</div>
I need this library to encode an entire HTML. I have tried library JSoup but it has bugs when handling some objects.
Thanks