snippets/markdown.json
| { |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| "highlight red": { |
| "prefix": "hr", |
| "body": ["<font color='red' size='4'>\n$1\n</font>"], |
| "description": "highlight red" |
| }, |
| |
| "highlight orange": { |
| "prefix": "ho", |
| "body": ["<font color='orange' size='4'>\n$1\n</font>"], |
| "description": "highlight orange" |
| }, |
| |
| "highlight yellow": { |
| "prefix": "hy", |
| "body": ["<font color='yellow' size='4'>\n$1\n</font>"], |
| "description": "highlight yellow" |
| }, |
| |
| "highlight green": { |
| "prefix": "hg", |
| "body": ["<font color='green' size='4'>\n$1\n</font>"], |
| "description": "highlight green" |
| }, |
| |
| "highlight blue": { |
| "prefix": "hb", |
| "body": ["<font color='skyblue' size='4'>\n$1\n</font>"], |
| "description": "highlight skyblue" |
| }, |
| |
| "highlight violet": { |
| "prefix": "hv", |
| "body": ["<font color='violet' size='4'>\n$1\n</font>"], |
| "description": "highlight violet" |
| }, |
| |
| "anki question": { |
| "prefix": "qq", |
| "body": ["<font style='display:none;'>\n$1\n</font>"], |
| "description": "make anki question" |
| } |
| } |
| |
snippets/javascript.json
| { |
| |
| |
| |
| |
| |
| "Print to console": { |
| "prefix": "log", |
| "body": ["console.log('$1');", "$2"], |
| "description": "Log output to console" |
| } |
| } |
| |
snippets/html.json
| { |
| "create vue app": { |
| "prefix": "vueapp", |
| "body": [ |
| "<!DOCTYPE html>", |
| "<html lang=\"zh\">", |
| "<head>", |
| " <meta charset=\"UTF-8\">", |
| " <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">", |
| " <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">", |
| " <title>Document</title>", |
| "</head>", |
| "<body>", |
| " <div id=\"app\">", |
| " {{msg}}", |
| " </div>", |
| " <script src=\"vue/vue.js\"></script>", |
| " <script>", |
| " Vue.createApp({", |
| " data:function(){", |
| " return{", |
| " msg: 'hello vue'", |
| " }", |
| " }", |
| " }).mount('#app')", |
| " </script>", |
| "</body>", |
| "</html>" |
| ], |
| "description": "create vue app" |
| } |
| } |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 微软正式发布.NET 10 Preview 1:开启下一代开发框架新篇章
· 没有源码,如何修改代码逻辑?
· PowerShell开发游戏 · 打蜜蜂
· 在鹅厂做java开发是什么体验
· WPF到Web的无缝过渡:英雄联盟客户端的OpenSilver迁移实战