Add underscore emphasis alternatives to Markdown guide
This commit is contained in:
parent
8fba174a6e
commit
9ec7a3a3bc
1 changed files with 11 additions and 0 deletions
11
markdown.md
11
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**
|
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
|
## Lists
|
||||||
|
|
||||||
### Unordered
|
### Unordered
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue