Package | Description |
---|---|
de.l3s.boilerpipe.sax |
Classes related to parsing and producing HTML from/to Boilerpipe TextDocuments.
|
Modifier and Type | Class and Description |
---|---|
static class |
CommonTagActions.BlockTagLabelAction
CommonTagActions for block-level elements, which triggers some LabelAction on the generated
TextBlock . |
static class |
CommonTagActions.Chained |
static class |
CommonTagActions.InlineTagLabelAction
|
class |
MarkupTagAction
Assigns labels for element CSS classes and ids to the corresponding
TextBlock . |
Modifier and Type | Field and Description |
---|---|
static TagAction |
CommonTagActions.TA_ANCHOR_TEXT
Marks this tag as "anchor" (this should usually only be set for the
<A> tag). |
static TagAction |
CommonTagActions.TA_BLOCK_LEVEL
Explicitly marks this tag a simple "block-level" element, which always generates whitespace
|
static TagAction |
CommonTagActions.TA_BODY
Marks this tag the body element (this should usually only be set for the
<BODY> tag). |
static TagAction |
CommonTagActions.TA_FONT
Special TagAction for the
<FONT> tag, which keeps track of the
absolute and relative font size. |
static TagAction |
CommonTagActions.TA_IGNORABLE_ELEMENT
Marks this tag as "ignorable", i.e.
|
static TagAction |
CommonTagActions.TA_INLINE
Deprecated.
Use
CommonTagActions.TA_INLINE_WHITESPACE instead |
static TagAction |
CommonTagActions.TA_INLINE_NO_WHITESPACE
Marks this tag a simple "inline" element, which neither generates whitespace, nor a new block.
|
static TagAction |
CommonTagActions.TA_INLINE_WHITESPACE
Marks this tag a simple "inline" element, which generates whitespace, but no new block.
|
Modifier and Type | Method and Description |
---|---|
protected void |
TagActionMap.addTagAction(java.lang.String tag,
TagAction action)
Adds a particular
TagAction for a given tag. |
protected void |
TagActionMap.setTagAction(java.lang.String tag,
TagAction action)
Sets a particular
TagAction for a given tag. |
Constructor and Description |
---|
Chained(TagAction t1,
TagAction t2) |