-
Notifications
You must be signed in to change notification settings - Fork 287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make todo list compatible with Markdown syntax #370
Comments
It was discussed previously: we cannot do this and keep compatibility with Taskpaper format at the same time, unless maybe some comes up with tricky regexp or something. |
Thanks @vovkkk, could you please give me hint for changing it and I need to make it compatible with Markdown even giving up the Taskpaper format. ❤️ |
Well, generally speaking if you want to make your own fork for this, first and foremost thing to change is regexes for tasks definitions in syntax files (PlainTasks.sublime-syntax for ST3 and PlainTasks.tmLanguage for ST2); there are three of them (pending, completed, and cancelled). |
Is it possible to add * [ ] task1
* [ ] task2
* [x] task3 =>
|
Sure. Could you send a pull request? |
… with Markdown syntax
… with Markdown syntax
… with Markdown syntax
For now, these are some options to identify the
open
ordone
tasks, can we add- [ ]
and- [x]
as one option too, to make it compatible with Markdown syntax?The text was updated successfully, but these errors were encountered: