void |
DocumentConverter.addBlockNode(NodeHandler handler,
String tagnames) |
Customize the processing for a node.
|
void |
DocumentConverter.addInlineNode(NodeHandler handler,
String tagnames) |
Customize the processing for a node.
|
String |
DocumentConverter.getInlineContent(NodeHandler currentNode,
org.jsoup.nodes.Element el) |
Recursively processes child nodes and returns the potential output string.
|
String |
DocumentConverter.getInlineContent(NodeHandler currentNode,
org.jsoup.nodes.Element el,
boolean undoLeadingEscapes) |
Recursively processes child nodes and returns the potential output string.
|
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 |
DocumentConverter.walkNodes(NodeHandler currentNode,
org.jsoup.nodes.Element el) |
Loops over the children of an HTML Element, handling TextNode and child Elements.
|
void |
DocumentConverter.walkNodes(NodeHandler currentNodeHandler,
org.jsoup.nodes.Element el,
Map<String,NodeHandler> nodeList) |
Loops over the children of an HTML Element, handling TextNode and child Elements.
|