diff --git a/org-mode-appt-check.plx b/org-mode-appt-check.plx index 8b701bb..5acd1e3 100755 --- a/org-mode-appt-check.plx +++ b/org-mode-appt-check.plx @@ -56,6 +56,7 @@ while (my $line = ) { my($source, $startHour, $startMin, $endHour, $endMin, $rest) = ($1, $2, $3, $4, $5, $6); next if $rest =~ /Sched.*\d+x\s*:/; # Skip overdue TODOs, because I have lot. + $rest =~ s/\[\s*\#\s*\S+\s*\]//g; # Remove priority tags my $type; if ($rest =~ s/^\s*Scheduled?\s*:\s*(WAITING|TODO|APPT|DELEGATED|DONE|DEFFERRED|CANCELLED|STARTED)\s*//i) { $type = $1;