Last active
January 5, 2022 14:09
-
-
Save vuthanhdatt/f33a43c1275757ac12445aba87331762 to your computer and use it in GitHub Desktop.
My personal code snippet for Markdown in VSCode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// In oder to enable quickSuggestions for Markdown. Add this code to setting.json | |
// "[markdown]": { | |
// "editor.quickSuggestions": true | |
// }, | |
"Markdown link": { | |
// : [l]ink | |
"prefix": ":l", | |
"body": [ | |
"[${1:title}](${2:https://www.example.com})" | |
], | |
"description": "A Markdown link" | |
}, | |
"Markdown image": { | |
// : [i]mage | |
"prefix": ":i", | |
"body": [ | |
"" | |
], | |
"description": "A Markdown image" | |
}, | |
"Markdown table": { | |
// : [t]able | |
"prefix": ":t", | |
"body": [ | |
"| ${1:Tables} | ${2:Are} | ${3:Cool} |", | |
"| ------------- |:-------------:| -----:|", | |
"| ${4:col} | ${5:col}| ${6:col} |", | |
"| ${7:col} | ${8:col} | ${9:col} |", | |
"| ${10:col} | ${11:col} | ${12:col} |", | |
], | |
"description": "A Markdown table" | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment