in reply to Re^3: Easy XML-parser that can handle large file?
in thread Easy XML-parser that can handle large file?
para => sub { $_[1]->set_tag( 'p') }, # change para to p (handlers + receive $twig and $element as argouments) para => sub { $_->set_tag( 'p') }, # change para to p ($_ is al +iased to $_[1] for convenience ) ###and in the corpus of the docs: $_ is also set to the element (ie: $_[1]), so it is easy to write inli +ne handlers like
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Easy XML-parser that can handle large file?
by mirod (Canon) on Sep 12, 2014 at 08:30 UTC |