use std::cell::RefCell;
use super::{Doctype, DocumentData, ElementData};
#[derive(Debug, PartialEq, Clone)]
pub enum NodeData {
Element(ElementData),
Text(RefCell<String>),
Comment(RefCell<String>),
ProcessingInstruction(RefCell<(String, String)>),
Doctype(Doctype),
Document(DocumentData),
DocumentFragment,
}