public class IdentityHtmlMapper extends Object implements HtmlMapper
Modifier and Type | Field and Description |
---|---|
static HtmlMapper |
INSTANCE |
Constructor and Description |
---|
IdentityHtmlMapper() |
Modifier and Type | Method and Description |
---|---|
boolean |
isDiscardElement(String name)
Checks whether all content within the given HTML element should be
discarded instead of including it in the parse output.
|
String |
mapSafeAttribute(String elementName,
String attributeName)
Maps "safe" HTML attribute names to semantic XHTML equivalents.
|
String |
mapSafeElement(String name)
Maps "safe" HTML element names to semantic XHTML equivalents.
|
public static final HtmlMapper INSTANCE
public boolean isDiscardElement(String name)
HtmlMapper
isDiscardElement
in interface HtmlMapper
name
- HTML element name (upper case)true
if content inside the named element
should be ignored, false
otherwisepublic String mapSafeAttribute(String elementName, String attributeName)
HtmlMapper
null
and the attribute
will be ignored. This method assumes that the element name
is valid and normalised.mapSafeAttribute
in interface HtmlMapper
elementName
- HTML element name (lower case)attributeName
- HTML attribute name (lower case)null
if the element is unsafepublic String mapSafeElement(String name)
HtmlMapper
null
and the element
will be ignored but the content inside it is still processed. See
the HtmlMapper.isDiscardElement(String)
method for a way to discard
the entire contents of an element.mapSafeElement
in interface HtmlMapper
name
- HTML element name (upper case)null
if the element is unsafeCopyright © 2007–2020 The Apache Software Foundation. All rights reserved.