From 5669406c7a70ea31c15aa28ca1597372173910b7 Mon Sep 17 00:00:00 2001 From: Amit Sengupta Date: Mon, 24 Mar 2025 00:51:35 +0530 Subject: [PATCH] Update basic-writing-and-formatting-syntax.md add single tilde `~` as valid strikethrough syntax --- .../basic-writing-and-formatting-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md b/content/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md index 2004566dd715..6b6e05a7b675 100644 --- a/content/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md +++ b/content/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md @@ -36,7 +36,7 @@ You can indicate emphasis with bold, italic, strikethrough, subscript, or supers | --- | --- | --- | --- | --- | | Bold | `** **` or `__ __`| Command+B (Mac) or Ctrl+B (Windows/Linux) | `**This is bold text**` | **This is bold text** | | Italic | `* *` or `_ _`     | Command+I (Mac) or Ctrl+I (Windows/Linux) | `_This text is italicized_` | _This text is italicized_ | -| Strikethrough | `~~ ~~` | None | `~~This was mistaken text~~` | ~~This was mistaken text~~ | +| Strikethrough | `~~ ~~` or `~ ~` | None | `~~This was mistaken text~~` | ~~This was mistaken text~~ | | Bold and nested italic | `** **` and `_ _` | None | `**This text is _extremely_ important**` | **This text is _extremely_ important** | | All bold and italic | `*** ***` | None | `***All this text is important***` | ***All this text is important*** | | Subscript | ` ` | None | `This is a subscript text` | This is a subscript text |