all repos — todo.txt-go @ fc721a7f14fd0ee5e9fadc6f1ade7f8be7db68c4

🐛 Fix key-value regex
Tim Izzo tim@octree.ch
Mon, 24 Mar 2025 21:32:18 +0100
commit

fc721a7f14fd0ee5e9fadc6f1ade7f8be7db68c4

parent

d2776d9f3d23c457849d7688fd176c112b18ddc0

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M style.gostyle.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)) }