Skip to content

Instantly share code, notes, and snippets.

@attusan
Last active July 29, 2021 03:41
Show Gist options
  • Save attusan/2b5f77b85cbea38ca2a61c532e50c878 to your computer and use it in GitHub Desktop.
Save attusan/2b5f77b85cbea38ca2a61c532e50c878 to your computer and use it in GitHub Desktop.
Markdown Cheat Sheet

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Paragraph text Inline Code text Mistaken text. Italics Bold


Tasks

  • a task list item
  • list syntax required
  • normal formatting
  • incomplete
  • completed

Code Blocks

4 space indention
makes full-width
standard code blocks
// Traditional Function
function (a, b){
  return a + b + 100;
}

// Arrow Function
(a, b) => a + b + 100;

  • List item one
  • List item two
    • A nested item

  1. Number list item one (two trailing spaces)
    1.1. A nested item
  2. Number list item two
  3. Number list item three

Quote

Second line Quote


Standard link = https://gist.github.com

Custom Text Link


Embedded Image

Embedded Image


Table

Left-Aligned Center Aligned Right Aligned
col 3 is some wordy text $1600
col 2 is centered $12
zebra stripes are neat $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment