Show Menu
Cheatography

MarkDown notation - Basic - Cheat Sheet (DRAFT) by

MarkDown notation - Basic -

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Headline

#
Level1
##
Level2
###
Level3

Bulleted List

-
List1
-
List2
\t-
List2-1
\t-
List2-2
- or + or *

Numbered List

1.
List1
\t1.
List1-1
\t1.
List1-2
1.
List2

Quote

> Changing the date of our appoin­tment on March 6
> My name is Calment, from Systems Corpor­ation.
>>I­nqu­iring about your estimation for the price of XX
Do not quote after double quote.
 

pre notation (space 4 or tab)

class Hoge
[\t]def hoge
[\t][­\t]print 'hoge'
[\t]end
end

pre notation 2 (3 tildes (GFM only))

~~~
class hoge
huga = 1
piyo = 2
end
~~~

pre notation 3 (3 back quotes (GFM only))

`

class hoge
huga = 1
piyo = 2
end
`

Code notation

Ex:Ins­tal­lCo­mmand is '
gem install hoge
'.