Generated by
JDiff

Class com.itextpdf.styledxmlparser.jsoup.Jsoup

Removed Methods
String  clean( String, Whitelist ) Get safe HTML from untrusted input HTML, by parsing input HTML and filtering it through a white-list of permitted tags and attributes.
String  clean( String, String , Whitelist ) Get safe HTML from untrusted input HTML, by parsing input HTML and filtering it through a white-list of permitted tags and attributes.
String  clean( String, String , Whitelist , OutputSettings ) Get safe HTML from untrusted input HTML, by parsing input HTML and filtering it through a white-list of permitted tags and attributes.
boolean  isValid( String, Whitelist ) Test if the input HTML has only tags and attributes allowed by the Whitelist.
Document  parseXML( InputStream, String ) Parse XML into a Document.
Document  parseXML( InputStream, String , String ) Parse XML into a Document.
Document  parseXML( String) Parse XML into a Document.
Document  parseXML( String, String ) Parse XML into a Document.
 

Added Methods
String  clean( String, String , Safelist ) Get safe HTML from untrusted input HTML, by parsing input HTML and filtering it through an allow-list of safe tags and attributes.
String  clean( String, String , Whitelist ) Use .clean(String, String, Safelist) instead.
String  clean( String, Safelist ) Get safe HTML from untrusted input HTML, by parsing input HTML and filtering it through a safe-list of permitted tags and attributes.
String  clean( String, Whitelist ) Use .clean(String, Safelist) instead.
String  clean( String, String , Safelist , OutputSettings ) Get safe HTML from untrusted input HTML, by parsing input HTML and filtering it through a safe-list of permitted tags and attributes.
String  clean( String, String , Whitelist , OutputSettings ) Use .clean(String, String, Safelist, Document.OutputSettings) instead.
boolean  isValid( String, Safelist ) Test if the input body HTML has only tags and attributes allowed by the Safelist.
boolean  isValid( String, Whitelist ) Use .isValid(String, Safelist) instead.
 

Changed Methods
Document  parse( File, String ) Documentation changed from old to new.
Parse the contents of a file as HTML.
Document  parse( File, String , String ) Documentation changed from old to new.
Parse the contents of a file as HTML.
Document  parse( InputStream, String , String ) Documentation changed from old to new.
Read an input stream, and parse it to a Document.
Document  parse( InputStream, String , String , Parser ) Documentation changed from old to new.
Read an input stream, and parse it to a Document.
Document  parse( String) Documentation changed from old to new.
Parse HTML into a Document.
Document  parse( String, String ) Documentation changed from old to new.
Parse HTML into a Document.
Document  parse( String, String , Parser ) Documentation changed from old to new.
Parse HTML into a Document, using the provided Parser.
Document  parseBodyFragment( String) Documentation changed from old to new.
Parse a fragment of HTML, with the assumption that it forms the {@code body} of the HTML.
Document  parseBodyFragment( String, String ) Documentation changed from old to new.
Parse a fragment of HTML, with the assumption that it forms the {@code body} of the HTML.