Skip to content

Commit

Permalink
🔧 Lowercase the tags from the html5 Vim custom snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
alrra committed Mar 12, 2015
1 parent 0d471f5 commit 4697cf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vim/vim/snippets/emmet.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"html": {
"snippets": {
"html5": "<!doctype html>\n<html lang=\"${lang}\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title></title>\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n</head>\n<body>\n\t${child}\n</body>\n</html>"
"html5": "<!doctype html>\n<html lang=\"${lang}\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"x-ua-compatible\" content=\"ie=edge\">\n\t<title></title>\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n</head>\n<body>\n\t${child}\n</body>\n</html>"
},
"variables": {
"lang": "en"
Expand Down

0 comments on commit 4697cf1

Please sign in to comment.