This question is more in response to the answer to my previous question
Seems like -[this is strikeout] would reasonably result in this is strikeout -- given that ![alt] is already used for images.
That way you could use strikeout in comments.
This question is more in response to the answer to my previous question
Seems like -[this is strikeout] would reasonably result in this is strikeout -- given that ![alt] is already used for images.
That way you could use strikeout in comments.
Why? Strikeout is already supported in the HTML, eg,
<s>not this again</s>
produces
not this again
(yes, <strike> also works)
I don't see any real value in adding random new Markdown syntax when the HTML we all know and love works fine.
I'm a fan of Trello solution: they use double tilde for strikeout text ~~like this~~, that appears rendered like this (they use the <del> HTML tag).
It's easy to remember, and resembles the ** we are already using for boldly emphasized text.