Sorry but I couldn't find this info. How do I strike the text?
- 1The answer to the linked question answer your question. This is exactly why we keep duplicates around here. Someone searching with the terms you used will find the information now that it is linked. (Ideally it would have been closed before someone answered, thus avoiding duplicating the actual information.)Mat– Mat2013-05-24 17:58:07 +00:00Commented May 24, 2013 at 17:58
- This question is definitely not a duplicate of the one that is linked. The one that is linked asks if markdown has a way to express strikeout, which is doesn't. It does NOT ask how to strike out text, or provide a clear answer on the way to do that.spacetyper– spacetyper2015-09-17 16:24:21 +00:00Commented Sep 17, 2015 at 16:24
Add a comment |
2 Answers
You can strikethrough with the HTML tag <s> and the close tag </s>.
Like so
<s>Like so</s> In chat this effect can be achieved with ---
---Like so--- Don't use it too often, though; it doesn't look very good.
- 8But how to use it in comments ?Tarik– Tarik2015-02-17 15:54:11 +00:00Commented Feb 17, 2015 at 15:54
- 1@Tarik I'm fairly certain there's not a way to strike text in comments currently.user206222– user2062222015-02-17 16:08:30 +00:00Commented Feb 17, 2015 at 16:08
- 4@Emrakul but why if we use some tools like this one: adamvarga.com/strike, we can do it like this T̶e̶x̶t̶, normally there should be a way to do it without using that toolTarik– Tarik2015-02-17 16:11:44 +00:00Commented Feb 17, 2015 at 16:11
- 6@Tarik Please do not use that technique. Exploiting unicode characters creates a problem for people who use screen-readers.sourcejedi– sourcejedi2020-01-24 16:13:43 +00:00Commented Jan 24, 2020 at 16:13
You can also use <strike>striking text</strike>. It's more typing but it works!
striking text
- 1This is now deprecated as of HTML5T.Woody– T.Woody2019-11-12 17:14:29 +00:00Commented Nov 12, 2019 at 17:14