Help for this page

Select Code to Download


  1. or download this
    local $/ = '';
    print OUT ("<$_>")
       while <IN>;
    
  2. or download this
    $out = join '',
           map { "<$_>" } 
           map { /\G((?:(?!\n\n).)*\n+|.+\z)/sg }
           $in;