Help for this page

Select Code to Download


  1. or download this
    use warnings; use 5.014;
    our $doc = q{<?xml version="1.0" encoding="iso-8859-2" ?>
    ...
        </verse>
    };
    
  2. or download this
    our %xmlopt = (
        keep_spaces => 1, comments => "drop", 
    ...
        $tw->parse($doc);
    }
    
  3. or download this
    =begin output
    
    ...
    
    =cut
    
  4. or download this
    if (1) {
        my $tw = XML::Twig->new(%xmlopt);
    ...
        }
    }
    
  5. or download this
    =begin output
    
    ...
    
    =cut
    
  6. or download this
    if (1) {
        my $line_handler = sub {
    ...
        $tw->parse($doc);
    }
    
  7. or download this
    =begin output
    
    ...
    
    =cut