Markdown Strikethrough Generator

Markdown Strikethrough Generator

Create strikethrough text in markdown for GitHub, Discord, and other platforms. Learn different strikethrough markdown methods and format your text with double tildes.

Markdown Strikethrough Generator - Create Strikethrough Text in Markdown

This free tool helps you create strikethrough text in markdown for GitHub, Discord, and other platforms. Generate strikethrough markdown with different syntax methods.

Strikethrough Markdown Settings

Strikethrough Markdown Output

Strikethrough Markdown Syntax Guide

Strikethrough in Markdown allows you to cross out words while keeping them visible, which is useful for showing edits, corrections, or outdated information. Creating strikethrough text in Markdown can be done using several methods, depending on the platform you're using.

How to Use Double Tilde for Strikethrough in GitHub Markdown

The most widely supported method for creating strikethrough text in markdown is using double tildes, which is part of the GitHub Flavored Markdown (GFM) specification:

markdown
~~Strikethrough text~~

This renders as: Strikethrough text

GitHub markdown strikethrough is supported across GitHub, GitLab, Reddit, Stack Overflow, and most modern Markdown editors and platforms. When you need to create strikethrough text in markdown for GitHub repositories, issues, or pull requests, this is the recommended syntax.

Single Tilde Strikethrough Markdown

Some platforms like Discord and Obsidian support a single tilde for creating strikethrough text in markdown:

markdown
~Strikethrough text~

This method is less widely supported but may be more convenient when writing quick messages on supported platforms. If you're specifically creating Discord strikethrough markdown, this syntax is commonly used.

HTML Tags for Markdown Strikethrough

For maximum compatibility, you can use HTML tags to create strikethrough text in markdown across most Markdown flavors:

markdown
<del>Strikethrough text</del>
<s>Alternative strikethrough tag</s>

HTML tags work in most Markdown parsers that allow HTML, including the original Markdown specification and CommonMark. However, some platforms with strict content policies (like Discord) may not render HTML tags for security reasons.

Practical Examples of Strikethrough Markdown

1. Showing corrections with markdown strikethrough text

markdown
The meeting will take place on ~~Monday at 3PM~~ Tuesday at 2PM.

2. Task list with completed items using strikethrough markdown

markdown
- [x] ~~Write first draft~~
- [ ] Review draft
- [ ] Publish document

3. Price changes with strikethrough text in markdown

markdown
**Black Friday Sale!**

~~$99.99~~ $79.99 - Premium Plan

4. Document revisions using GitHub markdown strikethrough

markdown
## Authentication

~~API keys must be included in the URL parameters.~~
API keys must be included in the request headers for security.

Need more details on Markdown syntax? Our comprehensive cheat sheet covers all elements in detail:

Explore Complete Markdown Syntax

Frequently Asked Questions About Markdown Strikethrough

What is strikethrough text in markdown?

Strikethrough text in markdown is a formatting style that places a horizontal line through text, indicating it has been deleted or is no longer relevant while keeping it visible for context. It's commonly used for showing edits, corrections, or outdated information in documentation, comments, and other markdown-formatted content.

How do I create strikethrough text in GitHub markdown?

To create strikethrough text in GitHub markdown, use the double tilde syntax (~~text~~) around the text you want to strike through. This is part of GitHub Flavored Markdown (GFM) and works in issues, pull requests, comments, READMEs, and other markdown files on GitHub. For example, typing ~~outdated information~~ will display as outdated information when rendered on GitHub.

Is strikethrough in markdown part of standard Markdown?

Strikethrough in markdown using tildes (~~text~~) is not part of the original Markdown specification or CommonMark. It's an extension added in GitHub Flavored Markdown that has been widely adopted. For maximum compatibility across all Markdown parsers, you can use HTML tags (<del>text</del>) to create strikethrough text in markdown documents that need to work with standard markdown processors.

How do I create strikethrough markdown in Discord?

Discord supports both single and double tilde syntax for strikethrough markdown. You can use either ~text~ or ~~text~~ to create strikethrough text in Discord messages. The single tilde version is more commonly used in Discord due to its simplicity. For example, typing ~outdated message~ will display as outdated message in Discord.

Can I create strikethrough text markdown across multiple paragraphs?

Yes, but with some limitations. With the tilde syntax, you need to apply strikethrough markdown to each paragraph separately as it doesn't work across paragraph breaks. For example:

markdown
~~Paragraph one~~

~~Paragraph two~~

If you need to create strikethrough text markdown across multiple paragraphs as a block, you can use HTML tags instead:

markdown
<del>
Paragraph one

Paragraph two
</del>

Can I combine strikethrough markdown with other formatting?

Yes, you can combine strikethrough markdown with other formatting elements like bold, italic, or links. When creating complex markdown strikethrough text, you can nest different syntax elements. For example:

markdown
~~**Bold strikethrough text**~~
~~*Italic strikethrough text*~~
~~[Strikethrough link text](https://example.com)~~

The order of formatting usually doesn't matter, so **~~text~~** and ~~**text**~~ would produce the same strikethrough text markdown result on most platforms.

What's the difference between markdown strikethrough in GitHub and other platforms?

Markdown strikethrough in GitHub uses the double tilde syntax (~~text~~) which is part of GitHub Flavored Markdown (GFM). While this same syntax works on many platforms like GitLab, Reddit, and Stack Overflow, some platforms have variations. For example, Discord supports both single (~) and double (~~) tildes for strikethrough, while some basic Markdown processors don't support strikethrough at all. If you're specifically creating content for GitHub, always use the double tilde syntax for consistent rendering of strikethrough text in GitHub markdown.

Other Useful Tools

Markdown Preview Tool

Convert your Markdown text to beautiful HTML in real-time. Supports code highlighting, tables, and more.

Markdown Cheat Sheet

Complete reference guide to Markdown syntax with examples for formatting, tables, code blocks, and more.

Markdown Table Generator

Create markdown tables easily with our visual editor. Generate tables for GitHub markdown, documentation, and more. Customize alignments, import/export data, with live preview.

Markdown Hyperlink Generator

Easily create Markdown hyperlinks. Generate syntax for standard, automatic, and reference links, perfect for websites, docs, and platforms like Discord.

Markdown Comments Tool

Learn how to add comments in Markdown. Create hidden comments for GitHub, documentation, and other platforms using HTML and reference-style methods.

Markdown New Line Generator

Learn how to add new lines in markdown documents. Try different line break methods for GitHub, Discord, and other platforms using trailing spaces, backslash, and HTML br tags.

HTML Table to Markdown Converter

Convert HTML tables to Markdown format instantly. Paste HTML code and get properly formatted Markdown tables.

Markdown Word Counter

Count words, characters, and estimate reading time for your Markdown text. Intelligently ignores code blocks.

Markdown to Text

Clean up Markdown syntax from AI outputs. Convert formatted Markdown to simple TXT content while preserving structure.

Markdown to LaTeX Converter

Extract and convert mathematical formulas from Markdown to LaTeX format for academic papers and scientific documents.