本文整理汇总了C#中TidyNet.Lexer.InlineDup方法的典型用法代码示例。如果您正苦于以下问题:C# Lexer.InlineDup方法的具体用法?C# Lexer.InlineDup怎么用?C# Lexer.InlineDup使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TidyNet.Lexer
的用法示例。
在下文中一共展示了Lexer.InlineDup方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Parse
//.........这里部分代码省略.........
++lexer.seenBodyEndTag;
Report.Warning(lexer, body, node, Report.CONTENT_AFTER_BODY);
}
/* mixed content model permits text */
if (node.Type == Node.TextNode)
{
if (iswhitenode && mode == Lexer.IgnoreWhitespace)
{
continue;
}
if (lexer.Options.EncloseText && !iswhitenode)
{
Node para;
lexer.UngetToken();
para = lexer.InferredTag("p");
Node.InsertNodeAtEnd(body, para);
TidyNet.ParserImpl.parseTag(lexer, para, mode);
mode = Lexer.MixedContent;
continue;
}
else
{
/* strict doesn't allow text here */
lexer.versions &= ~ (HtmlVersion.Html40Strict | HtmlVersion.Html20);
}
if (checkstack)
{
checkstack = false;
if (lexer.InlineDup(node) > 0)
{
continue;
}
}
Node.InsertNodeAtEnd(body, node);
mode = Lexer.MixedContent;
continue;
}
if (node.Type == Node.DocTypeTag)
{
Node.InsertDocType(lexer, body, node);
continue;
}
/* discard unknown and PARAM tags */
if (node.Tag == null || node.Tag == tt.TagParam)
{
Report.Warning(lexer, body, node, Report.DISCARDING_UNEXPECTED);
continue;
}
/*
Netscape allows LI and DD directly in BODY
We infer UL or DL respectively and use this
boolean to exclude block-level elements so as
to match Netscape's observed behaviour.
*/
lexer.excludeBlocks = false;
if (!((node.Tag.Model & ContentModel.Block) != 0) && !((node.Tag.Model & ContentModel.Inline) != 0))
{