├── 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 51 | 52 | Markup : [Named Link](http://www.google.fr/ "Named link title") and http://www.google.fr/ or 53 | 54 | [heading-1](#heading-1 "Goto heading-1") 55 | 56 | Markup: [heading-1](#heading-1 "Goto heading-1") 57 | 58 | Table, like this one : 59 | 60 | First Header | Second Header 61 | ------------- | ------------- 62 | Content Cell | Content Cell 63 | Content Cell | Content Cell 64 | 65 | ``` 66 | First Header | Second Header 67 | ------------- | ------------- 68 | Content Cell | Content Cell 69 | Content Cell | Content Cell 70 | ``` 71 | 72 | Adding a pipe `|` in a cell : 73 | 74 | First Header | Second Header 75 | ------------- | ------------- 76 | Content Cell | Content Cell 77 | Content Cell | \| 78 | 79 | ``` 80 | First Header | Second Header 81 | ------------- | ------------- 82 | Content Cell | Content Cell 83 | Content Cell | \| 84 | ``` 85 | 86 | Left, right and center aligned table 87 | 88 | Left aligned Header | Right aligned Header | Center aligned Header 89 | | :--- | ---: | :---: 90 | Content Cell | Content Cell | Content Cell 91 | Content Cell | Content Cell | Content Cell 92 | 93 | ``` 94 | Left aligned Header | Right aligned Header | Center aligned Header 95 | | :--- | ---: | :---: 96 | Content Cell | Content Cell | Content Cell 97 | Content Cell | Content Cell | Content Cell 98 | ``` 99 | 100 | `code()` 101 | 102 | Markup : `code()` 103 | 104 | ```javascript 105 | var specificLanguage_code = 106 | { 107 | "data": { 108 | "lookedUpPlatform": 1, 109 | "query": "Kasabian+Test+Transmission", 110 | "lookedUpItem": { 111 | "name": "Test Transmission", 112 | "artist": "Kasabian", 113 | "album": "Kasabian", 114 | "picture": null, 115 | "link": "http://open.spotify.com/track/5jhJur5n4fasblLSCOcrTp" 116 | } 117 | } 118 | } 119 | ``` 120 | 121 | Markup : ```javascript 122 | ``` 123 | 124 | * Bullet list 125 | * Nested bullet 126 | * Sub-nested bullet etc 127 | * Bullet list item 2 128 | 129 | ~~~ 130 | Markup : * Bullet list 131 | * Nested bullet 132 | * Sub-nested bullet etc 133 | * Bullet list item 2 134 | 135 | -OR- 136 | 137 | Markup : - Bullet list 138 | - Nested bullet 139 | - Sub-nested bullet etc 140 | - Bullet list item 2 141 | ~~~ 142 | 143 | 1. A numbered list 144 | 1. A nested numbered list 145 | 2. Which is numbered 146 | 2. Which is numbered 147 | 148 | ~~~ 149 | Markup : 1. A numbered list 150 | 1. A nested numbered list 151 | 2. Which is numbered 152 | 2. Which is numbered 153 | ~~~ 154 | 155 | - [ ] An uncompleted task 156 | - [x] A completed task 157 | 158 | ~~~ 159 | Markup : - [ ] An uncompleted task 160 | - [x] A completed task 161 | ~~~ 162 | 163 | - [ ] An uncompleted task 164 | - [ ] A subtask 165 | 166 | ~~~ 167 | Markup : - [ ] An uncompleted task 168 | - [ ] A subtask 169 | ~~~ 170 | 171 | > Blockquote 172 | >> Nested blockquote 173 | 174 | Markup : > Blockquote 175 | >> Nested Blockquote 176 | 177 | _Horizontal line :_ 178 | - - - - 179 | 180 | Markup : - - - - 181 | 182 | _Image with alt :_ 183 | 184 | ![picture alt](http://via.placeholder.com/200x150 "Title is optional") 185 | 186 | Markup : ![picture alt](http://via.placeholder.com/200x150 "Title is optional") 187 | 188 | Foldable text: 189 | 190 |
191 | Title 1 192 |

Content 1 Content 1 Content 1 Content 1 Content 1

193 |
194 |
195 | Title 2 196 |

Content 2 Content 2 Content 2 Content 2 Content 2

197 |
198 | 199 | Markup :
200 | Title 1 201 |

Content 1 Content 1 Content 1 Content 1 Content 1

202 |
203 | 204 | ```html 205 |

HTML

206 |

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 | --------------------------------------------------------------------------------