- or download this
use HTML::TreeBuilder;
...
# i will do some modifications to HTML here
my $output_html = $html->as_HTML(undef,undef,{});
print $output_html;
- or download this
<!DOCTYPE html>
<html><head></head><body>
<p>test https://www.google.com</p>
</body>
</html>
- or download this
<!DOCTYPE html>
<body>
<p>test https://www.google.com</p>
</body>