Markdown == ###### tags: `markdown` Syntax -- ### Title ``` [$Tile] == ``` OR ``` # [$Tile] ``` ### Sub-title ``` [$subtitle] -- ``` OR ``` ## [$subtitle] ``` ### block ``` `[$word]` ``` ### Code block ``` ``` [$language] [$code] ``` ``` * $language * javascript * markdown * c * shell ### Checkbox * Must at the first of line * Be aware the whitespace ``` - [ ] [$Item] ``` ### Font style ``` # bold **[$font]** # Italic *[$font]* ``` ### hashtag * the keyword **tags** is neccessary for hackMD ``` ###### tags: `[$tag1]` `[$tag2]` ... ``` ### Divider ``` --- ``` ``` *** ``` ``` <hr> ``` ### Strike through ``` ~~[$word]~~ ``` ### Table ``` | [$Title1] | [$Title2] | [$Title3] | ... | | :-------- | :-------- | :-------- | :--- | <--- divider | entry1 | entry2 | entry3 | ... | ... ``` Shortcut in VSCode -- ### Preview * In current editor (I remove it) ``` ctrl + shift + V ``` * Compare side-by-side ``` ctrl + K V ``` ### Externsion `Markdown All in One` ### Bold ``` ctrl + B ``` ### Italic ``` ctrl + I ``` ### Check Task List ``` alt + C ``` ### Table ``` # Step 1 title|title|title|... :--|:- entry|entry # Step 2 alt + shift + F ``` ### Toggle Stike through ``` alt + S ``` ### Toggle Code Block ``` ctrl + alt + C ``` ### Externsion `Paste Image` This extension will auto-save the image as a file from clipboard ``` ctrl + alt + V ```