示例#1
0
 public void Tail(iText.StyledXmlParser.Jsoup.Nodes.Node node, int depth)
 {
     accum.Append("</" + node.NodeName() + ">");
 }
示例#2
0
 public void Tail(iText.StyledXmlParser.Jsoup.Nodes.Node source, int depth)
 {
     if (source is iText.StyledXmlParser.Jsoup.Nodes.Element && this._enclosing.whitelist.IsSafeTag(source.NodeName
                                                                                                        ()))
     {
         this.destination = (iText.StyledXmlParser.Jsoup.Nodes.Element) this.destination.Parent();
     }
 }