🐛 Fix key-value regex
Tim Izzo tim@octree.ch
Mon, 24 Mar 2025 21:32:18 +0100
1 files changed,
2 insertions(+),
2 deletions(-)
jump to
M
style.go
→
style.go
@@ -64,7 +64,7 @@ checkedRegex := regexp.MustCompile(`^x (\d{4}-\d{2}-\d{2} )? ?`)
priorityRegex := regexp.MustCompile(`^\([A-Z]\) `) contextRegex := regexp.MustCompile(`@\w+`) projectRegex := regexp.MustCompile(`\+\w+`) - keyValueRegex := regexp.MustCompile(`.+:.+`) + keyValueRegex := regexp.MustCompile(`\w+:.+`) todoText = checkedRegex.ReplaceAllString(todoText, "") todoText = priorityRegex.ReplaceAllString(todoText, "")@@ -87,7 +87,7 @@ todoText = projectRegex.ReplaceAllStringFunc(todoText, func(match string) string {
return s.Project.Render(match) }) todoText = keyValueRegex.ReplaceAllStringFunc(todoText, func(match string) string { - return s.Project.Render(match) + return s.KeyValue.Render(match) }) return fmt.Sprintf("%s %s %s", s.Check.Render(checkString), s.getPriorityStyle(task.Priority), s.Task.Todo.Render(todoText)) }