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 |
Numbered List
1. |
List1 |
\t1. |
List1-1 |
\t1. |
List1-2 |
1. |
List2 |
Quote
> Changing the date of our appointment on March 6 |
> My name is Calment, from Systems Corporation. |
>>Inquiring 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:InstallCommand is ' gem install hoge
'. |
|
|
|