The XML::Parser "subs" Style
For each start-tag
<foo>
, calls
sub foo
For each end-tag
</foo>
, calls
sub foo_
For each chunk of text, calls
sub characters
Maintains element stack in
@Context