diff --git a/data/other/parse_todo.pl b/data/other/parse_todo.pl index b1a09a99a..eb803caa6 100644 --- a/data/other/parse_todo.pl +++ b/data/other/parse_todo.pl @@ -35,9 +35,10 @@ while(<>) { $is_title = 1; } } - } elsif (/$\\* .*/) { + } elsif (/^\* .*/) { if ($in_body ) { $total_item_count++; + $_ =~ s/^\* //; push(@{$todo_hash{$title}}, $item); $item = {}; $item->{'asignee'} = "Unknown"; @@ -65,7 +66,7 @@ for $title ( keys %todo_hash ) { print "

" . $title . "

\n"; - print " \n"; + print "
\n"; print " \n"; for $item ( @{$todo_hash{$title}} ) { my $asignee = $item->{'asignee'};
AsigneeTask