'Cancel/strike out a checklist item in GitLab

In GitLab issues, you can implement interactive checklists in markdown by utilizing square brackets:

Checklist:

  * [x] ToDo one
  * [ ] ToDo two

You can check items by clicking on them or by inserting an x into the square brackets in markdown. Is there a way to cancel an item? In other words, to mark an item as will not be done instead of leaving it as TODO?



Solution 1:[1]

I believe what you want is the strikethrough formatting, which uses double-tildes ~~ around the text you want to strike through.

https://docs.gitlab.com/ee/user/markdown.html#emphasis

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Richard