Skip to content

Commit 7a13cce

Browse files
committed
meta charset should be first child of head
and I prefer '>' to `/>` in HTML (not XHTML)
1 parent 4759af5 commit 7a13cce

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

public/en/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4+
<meta charset="utf-8">
45
<!-- Global Site Tag (gtag.js) - Google Analytics -->
56
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-620926-3"></script>
67
<script>
@@ -10,7 +11,6 @@
1011

1112
gtag('config', 'UA-620926-3');
1213
</script>
13-
<meta charset="utf-8"/>
1414
<title>Documentation for Ruby</title>
1515
<link rel="stylesheet" href="/assets/bootstrap-3.3.7.min.css">
1616
</head>

public/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!DOCTYPE html>
22
<html lang="ja">
33
<head>
4+
<meta charset="utf-8">
45
<!-- Global Site Tag (gtag.js) - Google Analytics -->
56
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-620926-3"></script>
67
<script>
@@ -10,7 +11,6 @@
1011

1112
gtag('config', 'UA-620926-3');
1213
</script>
13-
<meta charset="utf-8"/>
1414
<title>docs.ruby-lang.org</title>
1515
<link rel="stylesheet" href="/assets/bootstrap-3.3.7.min.css">
1616
</head>

public/ja/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!DOCTYPE html>
22
<html lang="ja">
33
<head>
4+
<meta charset="utf-8">
45
<!-- Global Site Tag (gtag.js) - Google Analytics -->
56
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-620926-3"></script>
67
<script>
@@ -10,7 +11,6 @@
1011

1112
gtag('config', 'UA-620926-3');
1213
</script>
13-
<meta charset="utf-8"/>
1414
<title>プログラミング言語 Ruby リファレンスマニュアル</title>
1515
<link rel="stylesheet" href="/assets/bootstrap-3.3.7.min.css">
1616
</head>

0 commit comments

Comments
 (0)