added vim snippets
[dotfiles.git] / .vim / mysnippets / html.snippets
1 snippet `<[a-z]+[0-9]*` "HTML tag expand" r
2 <`!p snip.rv = match.group()[1:]`>$0</`!p snip.rv = match.group()[1:]`>
3 endsnippet
4
5 snippet html "html template" w
6 <!DOCTYPE html>
7 <html>
8         <head>
9                 <meta charset="utf-8">
10                 <title></title>
11         </head>
12
13         <body>
14
15         </body>
16 </html>
17 endsnippet