public void OnStyleElement(string name, AttributeList attrs, string style) { Node node = new InlineNode(Lookup(name), new AttributeList(attrs), _currentDepth); node.content = style; node.parent = _lastParent; if (_lastParent != null) { _lastParent.children.Add(node); } AddNode(node); }
public void OnInlineElement(string name, AttributeList attrs) { Node node = new InlineNode(Lookup(name), new AttributeList(attrs), _currentDepth); // Debug.Log("OnInlineElement: "+name); node.parent = _lastParent; if (_lastParent != null) { _lastParent.children.Add(node); } OnNode(node); }