(&self, target: StrTendril, data: StrTendril)
| 121 | } |
| 122 | |
| 123 | fn push_processing_instruction(&self, target: StrTendril, data: StrTendril) -> NodeId { |
| 124 | self.push_node(NodeData::ProcessingInstruction { target, data }) |
| 125 | } |
| 126 | |
| 127 | fn push_doctype(&self, name: StrTendril) -> NodeId { |
| 128 | self.push_node(NodeData::Doctype { name }) |