当前位置: 首页>>代码示例>>C#>>正文


C# Node.HasOneChild方法代码示例

本文整理汇总了C#中Tidy.Core.Node.HasOneChild方法的典型用法代码示例。如果您正苦于以下问题:C# Node.HasOneChild方法的具体用法?C# Node.HasOneChild怎么用?C# Node.HasOneChild使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Tidy.Core.Node的用法示例。


在下文中一共展示了Node.HasOneChild方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Bq2Div

        /*
        Replace implicit blockquote by div with an indent
        taking care to reduce nested blockquotes to a single
        div with the indent set to match the nesting depth
        */
        public virtual void Bq2Div(Node node)
        {
            while (node != null)
            {
                if (node.Tag == _tt.TagBlockquote && node.Isimplicit)
                {
                    int indent = 1;

                    while (node.HasOneChild() && node.Content.Tag == _tt.TagBlockquote && node.Isimplicit)
                    {
                        ++indent;
                        StripOnlyChild(node);
                    }

                    if (node.Content != null)
                    {
                        Bq2Div(node.Content);
                    }

                    string indentBuf = "margin-left: " + (2*indent).ToString() + "em";

                    node.Element = _tt.TagDiv.Name;
                    node.Tag = _tt.TagDiv;
                    node.AddAttribute("style", indentBuf);
                }
                else if (node.Content != null)
                {
                    Bq2Div(node.Content);
                }

                node = node.Next;
            }
        }
开发者ID:r1pper,项目名称:TidyNetPortable,代码行数:38,代码来源:Clean.cs

示例2: List2Bq

        /*
        Some people use dir or ul without an li
        to indent the content. The pattern to
        look for is a list with a single implicit
        li. This is recursively replaced by an
        implicit blockquote.
        */
        public virtual void List2Bq(Node node)
        {
            while (node != null)
            {
                if (node.Content != null)
                {
                    List2Bq(node.Content);
                }

                if (node.Tag != null && node.Tag.Parser == ParserImpl.ParseList && node.HasOneChild() &&
                    node.Content.Isimplicit)
                {
                    StripOnlyChild(node);
                    node.Element = _tt.TagBlockquote.Name;
                    node.Tag = _tt.TagBlockquote;
                    node.Isimplicit = true;
                }

                node = node.Next;
            }
        }
开发者ID:r1pper,项目名称:TidyNetPortable,代码行数:28,代码来源:Clean.cs


注:本文中的Tidy.Core.Node.HasOneChild方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。