Removes tags and returns plain inner content
const string content = `<div><h2>bla</h2><p>fasel</p></div>`; Dominator dom = new Dominator(content); assert( dom.stripTags() == "blafasel", dom.stripTags());
See Implementation
Removes tags and returns plain inner content