Uses of Class
org.jsoup.nodes.Document.OutputSettings
-
Packages that use Document.OutputSettings Package Description org.jsoup Contains the mainJsoupclass, which provides convenient static access to the jsoup functionality.org.jsoup.nodes HTML document structure nodes. -
-
Uses of Document.OutputSettings in org.jsoup
Methods in org.jsoup with parameters of type Document.OutputSettings Modifier and Type Method Description static java.lang.StringJsoup. clean(java.lang.String bodyHtml, java.lang.String baseUri, Whitelist whitelist, Document.OutputSettings outputSettings)Get safe HTML from untrusted input HTML, by parsing input HTML and filtering it through a white-list of permitted tags and attributes. -
Uses of Document.OutputSettings in org.jsoup.nodes
Methods in org.jsoup.nodes that return Document.OutputSettings Modifier and Type Method Description Document.OutputSettingsDocument.OutputSettings. charset(java.lang.String charset)Update the document's output charset.Document.OutputSettingsDocument.OutputSettings. charset(java.nio.charset.Charset charset)Update the document's output charset.Document.OutputSettingsDocument.OutputSettings. clone()Document.OutputSettingsDocument.OutputSettings. escapeMode(Entities.EscapeMode escapeMode)Set the document's escape mode, which determines how characters are escaped when the output character set does not support a given character:- using either a named or a numbered escape.Document.OutputSettingsDocument.OutputSettings. indentAmount(int indentAmount)Set the indent amount for pretty printingDocument.OutputSettingsDocument.OutputSettings. outline(boolean outlineMode)Enable or disable HTML outline mode.Document.OutputSettingsDocument. outputSettings()Get the document's current output settings.Document.OutputSettingsDocument.OutputSettings. prettyPrint(boolean pretty)Enable or disable pretty printing.Document.OutputSettingsDocument.OutputSettings. syntax(Document.OutputSettings.Syntax syntax)Set the document's output syntax.Methods in org.jsoup.nodes with parameters of type Document.OutputSettings Modifier and Type Method Description protected voidAttribute. html(java.lang.Appendable accum, Document.OutputSettings out)protected voidNode. indent(java.lang.Appendable accum, int depth, Document.OutputSettings out)DocumentDocument. outputSettings(Document.OutputSettings outputSettings)Set the document's output settings.protected booleanAttribute. shouldCollapseAttribute(Document.OutputSettings out)Collapsible if it's a boolean attribute and value is empty or same as name
-