Gist Markdown Cheatsheet
Paragraph
text Inline Code
text by `Inline Code`
Mistaken text. by ~~Mistaken text.~~
Italics by *Italics*
Bold by **Bold**
Tasks
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;
}
Quote
Second line Quote
Standard link = http://ghost.org
Custom Text Link
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 (🍎): 🍎
GREEN APPLE (🍏): 🍏
BLUE HEART (💙): 💙
GREEN HEART (💚): 💚
YELLOW HEART (💛): 💛
PURPLE HEART (💜): 💜
GREEN BOOK (📗): 📗
BLUE BOOK (📘): 📘
ORANGE BOOK (📙): 📙
LARGE RED CIRCLE (🔴): 🔴
LARGE BLUE CIRCLE (🔵): 🔵
LARGE ORANGE DIAMOND (🔶): 🔶
LARGE BLUE DIAMOND (🔷): 🔷
SMALL ORANGE DIAMOND (🔸): 🔸
SMALL BLUE DIAMOND (🔹): 🔹
UP-POINTING RED TRIANGLE (🔺): 🔺
DOWN-POINTING RED TRIANGLE (🔻): 🔻
UP-POINTING SMALL RED TRIANGLE (🔼): 🔼
DOWN-POINTING SMALL RED TRIANGLE (🔽): 🔽