Skip to content

Commit d43f278

Browse files
committed
Merge pull request honza#354 from vim-guru/master
Replaced charset property to the html5 equivalent
2 parents 995ab73 + 2f9bb96 commit d43f278

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

snippets/html.snippets

+2-1
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,8 @@ snippet html5
449449
<!DOCTYPE html>
450450
<html>
451451
<head>
452-
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
452+
<meta charset="utf-8">
453+
<meta name="viewport" content="width=device-width">
453454
<title>${1:`substitute(vim_snippets#Filename('', 'Page Title'), '^.', '\u&', '')`}</title>
454455
${2:meta}
455456
</head>

0 commit comments

Comments
 (0)