HtmlCleaner CleanerProperties 参数配置(转自macken博客,链接:http://macken.iteye.com/blog/1579809)
2021-06-15 19:03
标签:参数 cdata clean proc names enc cap this values Parameter Default Explanation HtmlCleaner CleanerProperties 参数配置(转自macken博客,链接:http://macken.iteye.com/blog/1579809) 标签:参数 cdata clean proc names enc cap this values 原文地址:http://www.cnblogs.com/yigui/p/7274728.htmlHtmlCleaner CleanerProperties 参数配置
advancedXmlEscape
true
If this parameter is set to true, ampersand sign (&) that proceeds valid XML character sequences (&XXX;) will not be escaped with &XXX;
transResCharsToNCR
false
If this parameter is set to true, reserved XML sequences (&, ", ', ) are serialized to their Numeric Character Representations (#&38;, #&34;, #&39;, #&60;, #&62;). This parameter has effect only if advancedXmlEscape is set to true.
translateSpecialEntities
true
If true, special HTML entities (i.e. ?, ??, ?á) are replaced with unicode characters they represent (?, ??, ?á). This doesn‘t include &, , ", '.
transSpecialEntitiesToNCR
false
If this parameter is set to true, special HTML entities (i.e. |?) are serialized to their Numeric Character Representations (#&913;). This parameter has effect only if translateSpecialEntities is set to true.
recognizeUnicodeChars
true
If true, HTML characters represented by their codes in form XXX; are replaced with real unicode characters (i.e. §? is replaced with §?)
useCdata
true
If true, HtmlCleaner will treat SCRIPT and STYLE tag contents as CDATA sections, or otherwise it will be regarded as ordinary text (special characters will be escaped).
omitUnknownTags
false
Tells whether to skip (ignore) unknown tags during cleanup.
treatUnknTagsAsContent
false
Tells whether to treat unknown tags as ordinary content, i.e.
omitDeprTags
false
Tells whether to skip (ignore) deprecated HTML tags during cleanup.
treatDeprTagsAsContent
false
Tells whether to treat deprecated tags as ordinary content, i.e.
omitComments
false
Tells whether to skip HTML comments.
omitXmlDeclaration
false
Tells whether or not to put XML declaration line at the beginning of the resulting XML.
omitDoctypeDeclaration
true
Tells whether to skip HTML declaration found in the source document. If HTML document being cleaned doesn‘t contain one it wouldn‘t be placed in the result anyway.
omitXmlnsAttributes
false
This flag is depricated since version 1.3 and namespacesAware should be used instead.
omitEnvelope
false
Tells whether to remove open and close tag being serialized. This parameter is introduced in HtmlCleaner 2.2 to replace omitHtmlEnvelope. If set to true, serialization skips open and close tags of the node, outputs only node‘s children.
useEmptyElementTags
true
Specifies how to serialize tags with empty body - if true, compact notation is used(
allowMultiWordAttributes
true
Tells parser whether to allow attribute values consisting of multiple words or not. If true, attribute att="a b c" will stay like it is, and if false parser will split this into att="a" b="b" c="c" (this is default browsers‘ behaviour).
allowHtmlInsideAttributes
false
Tells parser whether to allow html tags inside attribute values. For example, when this flag is set att="here is link" will stay like it is, and if not, parser will end attribute value after "here is".
This flag makes sense only if allowMultiWordAttributes is set as well.
ignoreQuestAndExclam
true
Tells parser whether to completely ignore tags that have form or . This way some HTML/XML processing instructions may be omitted from the resulting xml.
namespacesAware
true
If true, namespace prefixes found during parsing will be preserved and all neccessery xml namespace declarations will be added in the root element. If false, all namespace prefixes and all xmlns namespace declarations will be stripped.
hyphenReplacement
=
XML doesn‘t allow double hyphen sequence (--) inside comments. This parameter tells which replacement to use for it when double hyphen is encountered during parsing.
pruneTags
empty string
Comma-separated list of tags that will be complitely removed (with all nested elements) from XML tree after parsing. For exampe if pruneTags is "script,style", resulting XML will not contain scripts and styles.
booleanAtts
self
Tells cleaner what value to give to boolean attributes, like checked, selected and similar. Allowed values are self - value of attribute is the same as attribute name (checked = "checked"), empty - attribute value is empty string (checked = "") and true - value of attribute is "true" (checked = "true").
nodeByXpath
XPath expression used to select first node that is going to be serialized instead of whole HTML document. For example if this parameter us set to //table[1] only first table in document will be serialized.
上一篇:phpstorm配置总结
文章标题:HtmlCleaner CleanerProperties 参数配置(转自macken博客,链接:http://macken.iteye.com/blog/1579809)
文章链接:http://soscw.com/index.php/essay/94248.html