Help for this page

Select Code to Download


  1. 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;
    
  2. or download this
    <!DOCTYPE html>
    <html><head></head><body>
    <p>test https://www.google.com</p>
    </body>
    </html>
    
  3. or download this
    <!DOCTYPE html>
    <body>
    <p>test https://www.google.com</p>
    </body>