网站使用 vuepress 搭建
插件说明
打开 vscode 设置,输入 quickSuggestions 查询 editor.quickSuggestions 选项打开 setting.json 然后写入如下配置
"[markdown]": {
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
},
markdown 模板
{
"md-template": {
"prefix": "md",
"body": [
"---",
" title: $TM_FILENAME",
" categories: $1",
"---",
"",
"> 本片文章引用于:",
"> [$1]($1)",
"> "
],
"description": "自动生成 md 模板文件"
}
}