Skip to content

Instantly share code, notes, and snippets.

@goodGid
Last active July 14, 2021 11:49
Show Gist options
  • Save goodGid/856771c2e03c2efcdcc962a326caa475 to your computer and use it in GitHub Desktop.
Save goodGid/856771c2e03c2efcdcc962a326caa475 to your computer and use it in GitHub Desktop.
markdown.json
/*
settings.json 파일에서
다음과 같은 설정을 해줘야한다.
"[markdown]": {
"editor.quickSuggestions": true
}
ref : /Users/user/Library/ApplicationSupport/Code/User/settings.json
*/
{
"[Custom] site": {
"prefix":["site"],
"body": ["* [$1]({{site.url}}/)"],
"description": "site.url"
},
"[Custom] reference": {
"prefix":["reference"],
"body": ["* [$1]($2)"],
"description": "reference"
},
"[Custom] Insert Image": {
"prefix":["image"],
"body": ["![](/assets/img/$1/$2.png)"],
"description": "image path"
},
"[Custom] Log": {
"prefix":["log"],
"body": ["\\$O(N log_2 N)$"],
"description": "log"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment