/// Lightweight DOM-like node produced by [`crate::Forge::render_dom`].
#[derive(Debug, Clone, PartialEq, Eq)]pubenumVNode{/// Element node.
Element(VElement),/// Text node.
Text(String),}/// Element in mdforge's virtual DOM representation.
#[derive(Debug, Clone, PartialEq, Eq)]pubstructVElement{/// Element tag name.
pubtag: String,
/// String attributes.
pubattrs:Vec<(String, String)>,
/// Child nodes.
pubchildren:Vec<VNode>,
}