Tell me more ×
Web Applications Stack Exchange is a question and answer site for power users of web applications. It's 100% free, no registration required.

Using HTML tags is supposed to work with GitHub Markdown, but in particular <s>text</s> is not working for me. It works on live preview page (which is now depreciated) but not on preview of README.md file (it does work on wikis - I just checked). I didn't find any special syntax for strikethrough on Markdown: Syntax page.

Is it not possible?

share|improve this question
Lol... depreciated. You mean deprecated. – Chloe Mar 20 at 5:45

migrated from superuser.com May 1 '11 at 16:47

2 Answers

up vote 82 down vote accepted

Use ~~tildes around the words~~.

share|improve this answer
1  
won't work on multiple paragraphs at once, but this is good enough too.. tnx – Nevena May 3 '11 at 9:25
Nice @iangreenleaf – Cirrostratus Apr 8 at 16:41

I just used the following syntax

<del> ... </del>

successfully on GitHub in an issue description.

share|improve this answer
This is a good answer too, since Markdown accepts arbitrary HTML tags. Depends on how you want to use it. – IanGreenleaf Apr 26 at 23:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.