├── LICENSE
└── README.md
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 tchapi
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Markdown Cheatsheet
2 | ===================
3 |
4 | - - - -
5 | # Heading 1 #
6 |
7 | Markup : # Heading 1 #
8 |
9 | -OR-
10 |
11 | Markup : ============= (below H1 text)
12 |
13 | ## Heading 2 ##
14 |
15 | Markup : ## Heading 2 ##
16 |
17 | -OR-
18 |
19 | Markup: --------------- (below H2 text)
20 |
21 | ### Heading 3 ###
22 |
23 | Markup : ### Heading 3 ###
24 |
25 | #### Heading 4 ####
26 |
27 | Markup : #### Heading 4 ####
28 |
29 |
30 | Common text
31 |
32 | Markup : Common text
33 |
34 | _Emphasized text_
35 |
36 | Markup : _Emphasized text_ or *Emphasized text*
37 |
38 | ~~Strikethrough text~~
39 |
40 | Markup : ~~Strikethrough text~~
41 |
42 | __Strong text__
43 |
44 | Markup : __Strong text__ or **Strong text**
45 |
46 | ___Strong emphasized text___
47 |
48 | Markup : ___Strong emphasized text___ or ***Strong emphasized text***
49 |
50 | [Named Link](http://www.google.fr/ "Named link title") and http://www.google.fr/ or Content 1 Content 1 Content 1 Content 1 Content 1 Content 2 Content 2 Content 2 Content 2 Content 2 Content 1 Content 1 Content 1 Content 1 Content 1Title 1
192 | Title 2
196 | Title 1
201 |
Some HTML code here
207 | ``` 208 | 209 | Link to a specific part of the page: 210 | 211 | [Go To TOP](#TOP) 212 | 213 | Markup : [text goes here](#section_name) 214 | section_title 215 | 216 | Hotkey: 217 | 218 | ⌘F 219 | 220 | ⇧⌘F 221 | 222 | Markup : ⌘F 223 | 224 | Hotkey list: 225 | 226 | | Key | Symbol | 227 | | --- | --- | 228 | | Option | ⌥ | 229 | | Control | ⌃ | 230 | | Command | ⌘ | 231 | | Shift | ⇧ | 232 | | Caps Lock | ⇪ | 233 | | Tab | ⇥ | 234 | | Esc | ⎋ | 235 | | Power | ⌽ | 236 | | Return | ↩ | 237 | | Delete | ⌫ | 238 | | Up | ↑ | 239 | | Down | ↓ | 240 | | Left | ← | 241 | | Right | → | 242 | 243 | Emoji: 244 | 245 | :exclamation: Use emoji icons to enhance text. :+1: Look up emoji codes at [emoji-cheat-sheet.com](http://emoji-cheat-sheet.com/) 246 | 247 | Markup : Code appears between colons :EMOJICODE: 248 | --------------------------------------------------------------------------------