Help for this page

Select Code to Download


  1. or download this
    my $parser = XML::Rules->new(
      rules => {
    ...
        print "It's a blog post\n\n"; 
      }
      ...
    
  2. or download this
    my $parser = XML::Rules->new(
      rules => {
    ...
        print "It's a blog post with labels: ".join(', ', @{$entry->{categ
    +ory}})."\n\n"; 
      }
      ...