VSCode 快捷输入配置
snippets快捷输入汇总
>hint
>ques
>def
>thm
>lem
>example
>label
>ref
>cite
>bubble
>otherproof
例如, 当在 VSCode 编辑器中输入 >hint 时, 会直接展开为如下的代码环境:
123{% hideToggle 提示,purple,white %}这里编辑需要"提示"的内容.{% endhideToggle %}
直接编辑环境内的内容即可, 方便又快捷, 用于提高编辑 blog 内容的代码片段. 这个代码片段在网页中的展示效果如下:
提示
    这里编辑需要”提示”的内容.
Markdown 源代码以下是上述快捷输入的全部代码, 将其放在 VSCode 项目根目录 .vscode/snippets.code-snippets 文件中即可. 
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121{	// Place your blog 工作区 snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and 	// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope 	// is left empty or omitted, the snippet gets applied to all l ...
第一个hexo日志
安装 hexo 与编写博文123$ npm install hexo-cli -g$ cd blog$ npm install
新建一个文件, 然后发布到github上去
123456789101112131415161718192021222324$ hexo new "第一个hexo日志"INFO  Created: ~/blog/source/_posts/第一个hexo日志.md$ vim ~/blog/source/_posts/第一个hexo日志.md$ npm install hexo-deployer-git --save$ vim _config.yml$ cat _config.yml...title: Larry_Eppes's Trivia Collection Sitekeywords: MATH, COMPUTERauthor: Larry Eppeslanguage: entimezone: 'Asia/Shanghai'...url: http://larryeppes.github.io...deploy:  type: 'git'  repo: https://github.com/larryeppes/larryeppes.github.io$ hexo serverINFO  Start processingINFO  Hexo is running at http://localhost:4000/. Press Ctrl+C to stop.$ hexo deploy --generate
博文信息提醒 note123{% note simple %}默認 提示块标签{% endnote %}
默認 提示块标签
123{% note default simple %}default 提示块标签{% endnote %}
default 提示块标签
123{% note primary simple %}primary 提示块标签{% endnote %}
primary 提示块标签
123{% note success  ...





