因为基于 hexo 写日志,要在 markdown 文件开头添加元数据信息,每次复制很麻烦,所以在 vscode 中配置 markdown 相关的文件模板。

设置 VS Code,使 markdown 文件支持快速联想

打开 setting.json,添加如下代码:

1
2
3
4
"[markdown]":  {
"editor.quickSuggestions": true
}

配置模板

  1. Ctrl + Shift + P
  2. 输入snippet
  3. 点击首选项:配置用户代码片片段
  4. 选择markdown.json

编写模板

在 body 里面写自己想要的模板

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
// Place your snippets for markdown here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// 联想时显示的文字内容
"create blog": {
"prefix": "blog", // 输入blog,即显示模板提示
"body": [
// body里是模板内容
"---",
"title: $1 # 文章名称", // $1表示生成模板后,光标最先在此位置
"date: $2 # 创建时间,例:2022-07-16 15:22:06", // $2表示,在$1处输入完成后,按tab键,光标便跳转到这里,以此类推
"tags:",
" - $3",
" - $4",
"categories: [$5,$6]",
"keywords: 'allanhao,blog,$7'",
"description: $1 # 文章描述", // 这里也有一个$1,表示内容和开始标题的内容默认是同步的
"---",
"",
"$8"
],
"description": "blog模板"
}
}

检验

在 md 里,输入 blog,即显示刚才设置好的模板内容。