<html>
Section containing HTML-specific options.
Attributes:
encoding
- Specify the encoding to use when reading a HTML document.
This is a HTML encoding name, not a Java encoding name.
<htmlTagSet/>
Add a predefined set of proprietary HTML tag and attributes to the list of
valid HTML tags. This option is only used by the tidy
parser.
Attributes:
tagSet
The name of the tag set. The following tag sets are defined:
cyberstudio
- Tags added by Adobe CyberStudio. These tags are for its
own use and assumed to be ignored by browsers (this is really lame).
<htmlTag/>
Add a proprietary tag to set of valid HTML tags.
Attributes:
name
- The name of the tag.
inline
- Tag is a character level element.
block
- Tag is a block-like elements e.g. paragraphs and lists.
empty
- The tag does not have a closing tag.
optclose
- The closing tag is optional.
<htmlAttr/>
Add a proprietary attribute the list of valid HTML attributes. The attribute will be allowed on all tags. This option is only used by the tidy parser.
Attributes:
name
- The name of the attribute.
It will be allowed for all HTML tags.
<compatibility>
Enables compatibility with the way older version of XMLC handled HTML.
Attributes:
oldClassConstants
-
Older versions of XMLC generated HTML class
attribute constants as all upper-case (e.g. CLASS_DELETEROW
) with values
being case-preserved. If a true value, this option will reproduce the
old behavior. This option is intended to aid in the porting of
existing applications; it may not be support in future releases.
oldNameConstants
-
Older versions of XMLC generated HTML name attribute
constants as all upper-case (e.g. NAME_INPUT
) with values being
case-preserved. If a true value, this option will reproduce the old
behavior. This option is intended to aid in the porting of existing
applications; it may not be support in future releases.