Subject: | POD says 'type' where it should say 'tag' |
In this section:
----------------------------
head2 C<$LX-E<gt>links()>
Only after you call C<parse> will this method return anything.
This method returns a reference to an ArrayOfHashes,
which basically looks like (Data::Dumper output)
$VAR1 = [ { type => 'img', src => 'image.png' }, ];
Please note that if yo provide a callback this array will be empty.
-------------------------
The example should say
$VAR1 = [ { tag => 'img', src => 'image.png' }, ];
Please note that if you provide a callback this array will be empty.