Skip to content

Instantly share code, notes, and snippets.

@mikoloism
Last active April 25, 2021 17:07
Show Gist options
  • Save mikoloism/b76c45b5d2c943f88d54570ec335eab8 to your computer and use it in GitHub Desktop.
Save mikoloism/b76c45b5d2c943f88d54570ec335eab8 to your computer and use it in GitHub Desktop.
Markdown cheat sheet

Markdown cheatsheet ⭐

Headings

Markdown Markup Preview
# Heading 1 <h1>HEADING 1</h1>

HEADING 1

# Heading 2 <h2>HEADING 2</h2>

HEADING 2

# Heading 3 <h3>HEADING 3</h3>

HEADING 3

# Heading 4 <h4>HEADING 4</h4>

HEADING 4

# Heading 5 <h5>HEADING 5</h5>
HEADING 5
# Heading 6 <h6>HEADING 6</h6>
HEADING 6

Inline Text

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**_
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment