From 9ec7a3a3bc1508ad598d4f52e09cbc68c3644b6e Mon Sep 17 00:00:00 2001 From: Einar Date: Tue, 12 May 2026 17:05:43 +0200 Subject: [PATCH] Add underscore emphasis alternatives to Markdown guide --- markdown.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/markdown.md b/markdown.md index 3309e85..34cc47f 100644 --- a/markdown.md +++ b/markdown.md @@ -35,6 +35,17 @@ Use headings to structure documents, not for emphasis. Don't skip levels Renders as: **bold text**, *italic text*, ~~strikethrough~~, **bold and *italic* together** +The same formatting can also be written with underscores: + +```markdown +_italic_ +__bold__ +__bold and _italic_ together__ +``` + +`*` and `_` are interchangeable. Convention is to use `*` for italic and `**` +for bold — reserve `_` for nesting to avoid ambiguity. + ## Lists ### Unordered