Skip to content

Instantly share code, notes, and snippets.

@theowlsden
Last active May 8, 2019 18:05
Show Gist options
  • Save theowlsden/820c9eb5d087dcc0c896b3a5590e7763 to your computer and use it in GitHub Desktop.
Save theowlsden/820c9eb5d087dcc0c896b3a5590e7763 to your computer and use it in GitHub Desktop.
Markdown Cheat Sheet

Syntax

-Headings

heading 1

heading 2

heading 3

heading 4

heading 5
heading 6

-Italics

this text is italic
this text is italic

-Strong

this text is bold this text is bold

-Strikethrough

this text is strikethrough

-Horizontal rule



-Blockquotes

this is a quote

Links

text for the link
text for the link

-UL

  • item 1
  • item 2
  • item 3
    • nested item 1
    • nested item 2

-OL

  1. item 1
  2. item 2
  3. item 3
  4. item 4

-Inline code blocks

<p> this is a code</p>

-Images

![alt text](image url)

---Github Markdown---

-Code blocks

Code here
function deeznuts(){
    console.log("Nice one");
}

-Tables

Table Name Table Name
Table Row Table Row
Table Row Table Row

-Task list

  • task 1
  • task 2
  • task 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment