in reply to Re: Mojo::DOM doesn't include marked-up text in an element's text
in thread Mojo::DOM doesn't include marked-up text in an element's text

"What do you mean by "complete text"?"

What anonymous said below, the method Cody Fendant should have used to get the combined text for all descending nodes is all_text, rather than text, so

print $e->text,$/;

becomes

print $e->all_text,$/;

Very handy, even for one liners/ojo use.