Arena-based DOM tree with cache-line aligned nodes.
This crate builds on fhp-tokenizer to construct an in-memory DOM tree
using an arena allocator. Each node occupies exactly 64 bytes (one cache
line) for optimal traversal performance.
Quick Start
use parse;
let doc = parse.unwrap;
let root = doc.root;
assert!;