Example #1
0
        public NodeIterator element()
        {
            StringBuilder decodedContent = new StringBuilder();

            decodedContent.Append(_stringContent);
            return(new NodeIterator(new List <Node> {
                StringNode.createStringNode(decodedContent, 0, 0, true)
            }));
        }
Example #2
0
 public Node find(NodeReader reader, string input, string position, bool balance_quotes)
 {
     return(StringNode.createStringNode(textBuffer, textBegin, textEnd, reader.getParser().shouldDecodeNodes()));
 }