-
Notifications
You must be signed in to change notification settings - Fork 53
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
Support todo markup with custom control. #23
Comments
I don't think it would be feasible right know, I've been using attributed text to render markdown styled text, it would be hard to include checkbox to it. 😔 |
After reviewing how you do things, I was thinking of using an 'NSTextAttachment' for a certain range of characters within the attributedString. And thus replace the Here's the Apple doc about it: https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/TextAttachments/Tasks/AddingAttachments.html On a scale of 0-5, how easy would it be to implement that? I'm might give it a go and produce a PR. |
Hard to tell to be honest, but would be glad to review and accept your PR if you do so 💪 |
Hi, any updates on this? |
In Markdown, the syntax
- [ ]
allows you to create todo lists.How difficult would it be to implement this syntax but with a custom renderer displaying a checkbox.
The text was updated successfully, but these errors were encountered: