Helps to find out where quoted attribute value should be closed when dealing with partially typed constructs like <a b=" <b or <a b="c="d" >
Exemplo n.º 1
0
 private StringClosure CreateStringClosure(string text) {
     HtmlCharStream stream = new HtmlCharStream(text);
     StringClosure closure = new StringClosure(stream);
     return closure;
 }
Exemplo n.º 2
0
 public HtmlTokenizer(HtmlCharStream cs) {
     _cs = cs;
     _stringClosure = new StringClosure(cs);
 }
Exemplo n.º 3
0
 public HtmlTokenizer(HtmlCharStream cs)
 {
     _cs            = cs;
     _stringClosure = new StringClosure(cs);
 }