-
Notifications
You must be signed in to change notification settings - Fork 19
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
Clickable check lists #63
Comments
Thanks for opening your first issue here! Engagement like this is essential for open source projects! 🤗 |
Prosemirror is something I always wanted to look at for next-level JupyterLab Markdown support. I know that Jason Grout also used to to add inline widgets, which was quite interesting. Nevertheless, that's a much bigger task than just making checklists actionable. @rowanc1 MDAST includes the token position information, right? If so, we should be able to do this. |
We do have access to the token line numbers, so editing that From the prosemirror/wysiwyg editor, I would vote to keep that out of scope of this repository. I absolutely want to work on that, and through open source work + curvenote have been working on these editors for >3 years. It will happen, just not sure if this extension is the best place for the wysiwyg push, which may appeal to slightly different users? Super open to feedback though if you think they should live in the same place! |
Excellent, thanks! Looking forward to it :-)
You will know better what makes sense implementation wise :-) It indeed sounds |
Related to jupyter-book/mystmd#244 |
Nice!!! Can't wait to try it out :-) |
Closed by #121 |
Context
In my student assignments, I include a checklist so that student can
check tasks as they are achieved to keep track of their progress through
the assignment. For now, they have to edit the underlying markdown
(double click, and replace
- [ ]
by- [x]
) which is inconvenient anderror-prone.
Proposal
When a rendered markdown cell contains a check-list, enable to
check/uncheck a checkbox by a simple click in the check-box. Like
e.g. in github/gitlab issue trackers.
Note: this involves not only rendering of cells, but also editing
the underlying markdown. So this may well be out of scope of
jupyterlab-mystjs and/or may require coordination with the
progress with
prosemirror wysiwig cell editor.
Bonus: enable markdown cells that are read-only but for
checking/unchecking check boxes. This would require a
third value to the
editable
cell option:non editable/checkable/editable, a change which goes even
further away of jupyterlab-mystjs.
Tasks and updates
No response
The text was updated successfully, but these errors were encountered: