[前端] sublime text3 新建片段


sublime新建片段在: 菜单->工具->新片段 

把html内容放在CDATA[ // html ] 里
${1}和${2}是tab键切换焦点

  1. <snippet> 
  2.     <content><![CDATA[ 
  3. <!DOCTYPE html> 
  4. <html lang="zh-CN"> 
  5. <head> 
  6.     <meta charset="UTF-8"> 
  7.     <meta name="keywords" content="" /> 
  8.     <meta name="description" content="" /> 
  9.     <meta name="author" content="zhangqh"> 
  10.     <title>${1:document}</title> 
  11. </head> 
  12. <body> 
  13.     ${2} 
  14. </body> 
  15. </html> 
  16. ]]></content> 
  17.     <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> 
  18.     <tabTrigger>htm</tabTrigger> 
  19.     <!-- Optional: Set a scope to limit where the snippet will trigger --> 
  20.     <!-- <scope>source.python</scope> --> 
  21. </snippet>

使用:新建html文件,在空文件里输入htm然后按tab键自动生成你定义的片段代码。
谢谢关注!






1









123123

你可能感兴趣的:([前端] sublime text3 新建片段)