Skip to content

Commit

Permalink
charset="UTF-8” => charset=“utf-8”
Browse files Browse the repository at this point in the history
Lower case charset=“utf-8” is more common in the source base than
charset="UTF-8” (24 vs 6 occurrences), so let’s formalize to the lower case version
  • Loading branch information
tkrotoff committed Dec 8, 2016
1 parent 3c03d3a commit ee2df7c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ This will generate a file `dist/index.html` containing the following:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta charset="utf-8">
<title>Webpack App</title>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion default_index.ejs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta charset="utf-8">
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion examples/default/dist/webpack-1/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta charset="utf-8">
<title>Webpack App</title>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion examples/default/dist/webpack-2/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta charset="utf-8">
<title>Webpack App</title>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion examples/favicon/dist/webpack-1/favicon.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta charset="utf-8">
<title>HtmlWebpackPlugin example</title>
<link rel="shortcut icon" href="favicon.ico"><link href="styles.css" rel="stylesheet"></head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion examples/favicon/dist/webpack-2/favicon.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta charset="utf-8">
<title>HtmlWebpackPlugin example</title>
<link rel="shortcut icon" href="favicon.ico"><link href="styles.css" rel="stylesheet"></head>
<body>
Expand Down

0 comments on commit ee2df7c

Please sign in to comment.