Text::Markup::HTML
HTML parser for Text::Markup
- Provided by: libtext-markup-perl (Version: 0.33-1)
- Report a bug
HTML parser for Text::Markup
use Text::Markup; my $html = Text::Markup->new->parse(file => 'hello.html');
This is the HTML <https://whatwg.org/html/> parser for Text::Markup. All it does is read in the HTML file and return it as a string. It makes no assumptions about encoding, and returns the string raw as read from the file, with no decoding. It recognizes files with the following extensions as HTML:
To change it the files it recognizes, load this module directly and pass a regular expression matching the desired extension(s), like so:
use Text::Markup::HTML qr{hachetml};
David E. Wheeler <david@justatheory.com>
Copyright (c) 2011-2024 David E. Wheeler. Some Rights Reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.