Replies: 3 comments
-
Lol. I should have been more specific. I am thinking of implementing a todo.txt query system in Markor. This would be something a user could enter in the app and would be more todo-syntax specific than a general purpose filtering system like grep (or regex). For example I could come up with something myself, but I'd rather use an existing syntax / format, if it is in use in other clients. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Any opinions on this: {
"note": "Todo text filter in json format",
"and": [
"project": "work",
"or" : [
"context": "meeting",
"context": "george"
],
"not" : {
"or": [
"priority": "C",
"priority": "D",
"priority": "E"
]
},
"or": [
"due": "today",
"due": "overdue"
],
"done": false
]
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a query language / syntax in common use with todo.txt. Something like the todoist filter language?
Beta Was this translation helpful? Give feedback.
All reactions