Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 346 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 346 Bytes

HTML::Strip

Strip HTML markup from text.

    use HTML::Strip;
    my $html = q{<body>my <a href="http://">perl module</a></body>};
    my $clean = html_strip($html);
    # $clean: my perl module 

HTML::Strip removes HTML tags and comments from given text.

See embedded POD documentation for more information.