Markdown | Markup | Preview |
---|---|---|
# Heading 1 |
<h1>HEADING 1</h1> |
|
# Heading 2 |
<h2>HEADING 2</h2> |
|
# Heading 3 |
<h3>HEADING 3</h3> |
|
# Heading 4 |
<h4>HEADING 4</h4> |
|
# Heading 5 |
<h5>HEADING 5</h5> |
|
# Heading 6 |
<h6>HEADING 6</h6> |
Markdown | Markup | Preview |
---|---|---|
this is **bold** |
this is <strong>bold</strong> |
this is bold |
this is __bold__ |
this is <strong>bold</strong> |
this is bold |
this is _italic_ |
this is <em>italic</em> |
this is italic |
this is *italic* |
this is <em>italic</em> |
this is italic |
this is ***italic + bold*** |
this is <em><strong>italic + bold</strong></em> |
this is italic + bold |
this is ___italic + bold___ |
this is <strong><em>italic + bold</em></strong> |
this is italic + bold |
❌ there is depracated way to use Italic and Bold together
*__italic and bold__*
__*italic and bold*__
**_italic and bold_**
_**italic and bold**_