Parse checkboxes in Markdown tables
### Current Workaround See https://gitlab.com/gitlab-org/gitlab/-/issues/21506#note_262038275 for how to use a combination of HTML and Markdown to achieve checkboxes in a table. ### Description Currently if you add a simple unsorted list you can add checkboxes to it via `- \[ \] description`, I would love to have the same feature for tables. ### Proposal ``` | Done? | Description | Extra information | |---|---|---| | [ ] | Things | Blah blah | | [ ] | That | Hip Hip | | [ ] | Need | Wunderfull | | [ ] | Attention | | ``` ### Samples * [x] This works * [ ] This works * [ ] This works | Done? | Description | Extra information | |-------|-------------|-------------------| | [x] | Things | Blah blah | | [x] | That | Hip Hip | | [x] | Need | Wunderfull | | [ ] | Attention | | ### Links / references ## Content Editor Editing this description using the `Rich text` option currently being developed allows for task lists to be embedded in tables. This can't be accomplished using raw Markdown so the source will render out to HTML. <table> <tr> <th> </th> <th>Task</th> <th>Notes</th> </tr> <tr> <td> * [x] Complete? </td> <td> Edit issues and epics on `gitlab-org` using the Content Editor </td> <td>There are some rough edges, but it works</td> </tr> <tr> <td> * [ ] Complete? </td> <td>Make the Content Editor available for all projects</td> <td>Our GA plan is pending internal feedback</td> </tr> </table>
issue