Skip to content

Instantly share code, notes, and snippets.

@askalee
Forked from benstr/readme.md
Last active June 22, 2018 01:50
Show Gist options
  • Save askalee/bba9cf9e49e27239d5ef45ac2bbd3e5b to your computer and use it in GitHub Desktop.
Save askalee/bba9cf9e49e27239d5ef45ac2bbd3e5b to your computer and use it in GitHub Desktop.
Gist Markdown Cheatsheet

Heading 1 by # Heading 1

Heading 2 by ## Heading 2

Heading 3 by ### Heading 3

Heading 4 by #### Heading 4

Heading 5 by ##### Heading 5
Heading 6 by ######Heading 6

Paragraph

text Inline Code text by `Inline Code`

Mistaken text. by ~~Mistaken text.~~

Italics by *Italics*

Bold by **Bold**


Tasks

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

Code Blocks

4 space indention
makes full-width
standard code blocks
var now = new Date();

var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}
today =  days[now.getDay()] + ", " +
         months[now.getMonth()] + " " +
         date + ", " +
         (fourdigits(now.getYear())) ;

document.write(today);
#sc_drag_area {
  height:100px;
  left:150px;
  position: absolute;
  top:100px;
  width:250px;
  z-index: 9999;
}

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

  1. Number list item one 1.1. A nested item
  2. Number list item two
  3. Number list item three

Quote

Second line Quote


Standard link = http://ghost.org Custom Text Link


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

Special Icons

RED APPLE (&#x1F34E;): 🍎
GREEN APPLE (&#x1F34F;): 🍏
BLUE HEART (&#x1F499;): πŸ’™
GREEN HEART (&#x1F49A;): πŸ’š
YELLOW HEART (&#x1F49B;): πŸ’›
PURPLE HEART (&#x1F49C;): πŸ’œ
GREEN BOOK (&#x1F4D7;): πŸ“—
BLUE BOOK (&#x1F4D8;): πŸ“˜
ORANGE BOOK (&#x1F4D9;): πŸ“™
LARGE RED CIRCLE (&#x1F534;): πŸ”΄
LARGE BLUE CIRCLE (&#x1F535;): πŸ”΅
LARGE ORANGE DIAMOND (&#x1F536;): πŸ”Ά
LARGE BLUE DIAMOND (&#x1F537;): πŸ”·
SMALL ORANGE DIAMOND (&#x1F538;): πŸ”Έ
SMALL BLUE DIAMOND (&#x1F539;): πŸ”Ή
UP-POINTING RED TRIANGLE (&#x1F53A;): πŸ”Ί
DOWN-POINTING RED TRIANGLE (&#x1F53B;): πŸ”»
UP-POINTING SMALL RED TRIANGLE (&#x1F53C;): πŸ”Ό
DOWN-POINTING SMALL RED TRIANGLE (&#x1F53D;): πŸ”½
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment