Uses of Class
       
       org.jsoup.nodes.Document.OutputSettings
     
      Packages that use Document.OutputSettings
     
     Package
      Description
      
      
        Contains the main 
      Jsoup class, which provides convenient static access to the jsoup functionality.
       HTML document structure nodes.
      - 
        
Uses of Document.OutputSettings in org.jsoup
Methods in org.jsoup with parameters of type Document.OutputSettingsModifier and TypeMethodDescriptionstatic StringJsoup.clean(String bodyHtml, String baseUri, Safelist safelist, Document.OutputSettings outputSettings) Get safe HTML from untrusted input HTML, by parsing input HTML and filtering it through a safe-list of permitted tags and attributes. - 
        
Uses of Document.OutputSettings in org.jsoup.nodes
Methods in org.jsoup.nodes that return Document.OutputSettingsModifier and TypeMethodDescriptionDocument.OutputSettings.charset(String charset) Update the document's output charset.Update the document's output charset.Document.OutputSettings.clone()Document.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.OutputSettings.indentAmount(int indentAmount) Set the indent amount for pretty printingDocument.OutputSettings.maxPaddingWidth(int maxPaddingWidth) Set the max padding amount for pretty printing so very deeply nested nodes don't get insane padding amounts.Document.OutputSettings.outline(boolean outlineMode) Enable or disable HTML outline mode.Document.outputSettings()Get the document's current output settings.Document.OutputSettings.prettyPrint(boolean pretty) Enable or disable pretty printing.Document.OutputSettings.syntax(Document.OutputSettings.Syntax syntax) Set the document's output syntax.Methods in org.jsoup.nodes with parameters of type Document.OutputSettingsModifier and TypeMethodDescriptionstatic StringEntities.escape(String data, Document.OutputSettings out) HTML escape an input string.protected voidAttribute.html(Appendable accum, Document.OutputSettings out) Deprecated.internal method and will be removed in a future versionprotected static voidAttribute.html(String key, @Nullable String val, Appendable accum, Document.OutputSettings out) Deprecated.internal method and will be removed in a future versionprotected voidNode.indent(Appendable accum, int depth, Document.OutputSettings out) Deprecated.internal method moved into Printer; will be removed in a future versionDocument.outputSettings(Document.OutputSettings outputSettings) Set the document's output settings.protected static booleanAttribute.shouldCollapseAttribute(String key, @Nullable String val, Document.OutputSettings out) protected final booleanAttribute.shouldCollapseAttribute(Document.OutputSettings out) Deprecated.internal method and will be removed in a future version