CGI::Pretty - module to produce nicely formatted HTML code |
CGI::Pretty - module to produce nicely formatted HTML code
It will be removed from the CGI distribution in a future release, so you should no longer use it and remove it from any code that currently uses it.
For now it has been reduced to a shell to prevent your code breaking, but the ``pretty'' functions will no longer output ``pretty'' HTML.
the HTML::HTML5::Parser manpage + the HTML::HTML5::Writer manpage + the XML::LibXML::PrettyPrint manpage:
use HTML::HTML5::Parser qw(); use HTML::HTML5::Writer qw(); use XML::LibXML::PrettyPrint qw();
print HTML::HTML5::Writer->new( start_tags => 'force', end_tags => 'force', )->document( XML::LibXML::PrettyPrint->new_for_html( indent_string => "\t" ) ->pretty_print( HTML::HTML5::Parser->new->parse_string( $html_string ) ) );
the Marpa::R2::HTML manpage (see the html_fmt script for examples)
CGI::Pretty - module to produce nicely formatted HTML code |