in reply to XML::LibXSLT & --html flag?

See source of HTML::TreeBuilder::LibXML for magic incantation

Replies are listed 'Best First'.
Re^2: XML::LibXSLT & --html flag?
by Tinkster (Novice) on May 16, 2012 at 21:30 UTC
    Om-mani- ...

    Thanks. While brute force reading of doco and source didn't do much for me browsing the cpan page for XML::LibXML::Parser just had a break-through result, and I feel stupid for having asked in the first place =o)

    All it took was to change from
    my $source = XML::LibXML->load_xml(location => 'blub.html');
    to
    my $source = XML::LibXML->load_html(location => 'blub.html');

    *sigh*