Example #1
0
 public void PushWithoutAttaching(HtmlTag tag)
 {
     _currentStack.Push(tag);
 }
Example #2
0
 public void Add(HtmlTag tag)
 {
     Last = tag;
     Current.Append(tag);
 }
Example #3
0
 public void Push(HtmlTag tag)
 {
     Current.Append(tag);
     _currentStack.Push(tag);
 }
Example #4
0
 public HtmlTag Add(string tagName)
 {
     Last = Current.Add(tagName);
     return(Last);
 }