void |
AbstractNodeHandler.handleIgnoredHTMLElement(org.jsoup.nodes.Element node,
DocumentConverter converter) |
Handle an ignored HTMLElement.
|
void |
NodeHandler.handleIgnoredHTMLElement(org.jsoup.nodes.Element node,
DocumentConverter converter) |
Handle an ignored HTMLElement.
|
void |
NodeRemover.handleIgnoredHTMLElement(org.jsoup.nodes.Element node,
DocumentConverter converter) |
|
void |
Abbr.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
Handles abbreviations.
|
void |
Anchor.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
Creates a link reference, and renders the correct output.
|
void |
BlockQuote.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
Processes a quoted section.
|
void |
Break.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
Renders out forced linebreaks.
|
void |
Codeblock.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
Converts a pre-formatted block of code.
|
void |
DefaultNodeHandler.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
For the default state element, the nodes are simply ignored, recursing as necessary.
|
void |
Definitions.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
|
void |
Header.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
Renders a header node (h1..h6).
|
void |
HorizontalRule.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
|
void |
Image.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
Creates a link reference to an image, and renders the correct output.
|
void |
InlineCode.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
Renders inline-styled code.
|
void |
InlineStyle.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
Renders inline styling (bold, italics) for the given tag.
|
void |
List.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
|
void |
NodeHandler.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
Handles an HTML Element node.
|
void |
NodeRemover.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
|
void |
Paragraph.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
Creates a standard text block, then walks down over inline nodes.
|
void |
Table.handleNode(NodeHandler parent,
org.jsoup.nodes.Element node,
DocumentConverter converter) |
|
void |
AbstractNodeHandler.handleTextNode(org.jsoup.nodes.TextNode node,
DocumentConverter converter) |
Handle a child text node.
|
void |
InlineStyle.handleTextNode(org.jsoup.nodes.TextNode node,
DocumentConverter converter) |
|
void |
NodeHandler.handleTextNode(org.jsoup.nodes.TextNode node,
DocumentConverter converter) |
Handle a child text node.
|
void |
NodeRemover.handleTextNode(org.jsoup.nodes.TextNode node,
DocumentConverter converter) |
|
protected void |
AbstractNodeHandler.prependAndRecurse(String prepend,
org.jsoup.nodes.Element node,
DocumentConverter converter,
Map<String,NodeHandler> nodes) |
Recursively processes child nodes, and prepends the given string to the output.
|