Package burp.api.montoya.utilities
Interface HtmlUtils
public interface HtmlUtils
This interface gives you access to HTML encoding and decoding features.
-
Method Summary
-
Method Details
-
encode
Encode HTML text usingHtmlEncoding.STANDARD
encoding.- Parameters:
html
-String
to be encoded.- Returns:
- the encoded
String
.
-
encode
Encode HTML text.- Parameters:
html
-String
to be encoded.encoding
-HtmlEncoding
to be used.- Returns:
- the encoded
String
.
-
decode
Decode encoded HTML text.- Parameters:
encodedHtml
-String
to be decoded.- Returns:
- the decoded
String
.
-