You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using antisamy to sanitize HTML contents. During the parsing of the HTML Data, the (self-closing) tag is converted into (open tag). Is there any specific reason behind this behavior change? Is there any way to retain the tags?
Eg Input Html Data: <p>this is para data</p><br/><p>this is para data 2</p>
Eg Output Html Data: <p>this is para data</p><br><p>this is para data 2</p>
HtmlUnit-Neko version using - 3.11.2
Antisamy version using - 1.7.5
The text was updated successfully, but these errors were encountered:
I am using antisamy to sanitize HTML contents. During the parsing of the HTML Data, the
(self-closing) tag is converted into
(open tag). Is there any specific reason behind this behavior change? Is there any way to retain the
tags?
Eg Input Html Data:
<p>this is para data</p><br/><p>this is para data 2</p>
Eg Output Html Data:
<p>this is para data</p><br><p>this is para data 2</p>
HtmlUnit-Neko version using - 3.11.2
Antisamy version using - 1.7.5
The text was updated successfully, but these errors were encountered: