public interface HtmlMapper
HtmlParser
looks up an optional HTML mapper from
the parse context and uses it to map parsed HTML to "safe" XHTML. A client
that wants to customize this mapping can place a custom HtmlMapper instance
into the parse context.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.
|
String mapSafeElement(String name)
null
and the element
will be ignored but the content inside it is still processed. See
the isDiscardElement(String)
method for a way to discard
the entire contents of an element.name
- HTML element name (upper case)null
if the element is unsafeboolean isDiscardElement(String name)
name
- HTML element name (upper case)true
if content inside the named element
should be ignored, false
otherwiseString mapSafeAttribute(String elementName, String attributeName)
null
and the attribute
will be ignored. This method assumes that the element name
is valid and normalised.elementName
- HTML element name (lower case)attributeName
- HTML attribute name (lower case)null
if the element is unsafeCopyright © 2007-2015 The Apache Software Foundation. All Rights Reserved.