fix counting of all / done issue tasks, fix #4431

This commit is contained in:
Robert Wolff 2024-07-11 18:27:48 +02:00
parent 22de4ae9c4
commit b222c48060

View file

@ -153,8 +153,8 @@ type Issue struct {
} }
var ( var (
issueTasksPat = regexp.MustCompile(`(^\s*[-*]\s\[[\sxX]\]\s.)|(\n\s*[-*]\s\[[\sxX]\]\s.)`) issueTasksPat = regexp.MustCompile(`(^\s*[-*]\s*\[[\sxX]\].)|(\n\s*[-*]\s*\[[\sxX]\].)`)
issueTasksDonePat = regexp.MustCompile(`(^\s*[-*]\s\[[xX]\]\s.)|(\n\s*[-*]\s\[[xX]\]\s.)`) issueTasksDonePat = regexp.MustCompile(`(^\s*[-*]\s*\[[xX]\].)|(\n\s*[-*]\s*\[[xX]\].)`)
) )
// IssueIndex represents the issue index table // IssueIndex represents the issue index table