Properly set the encoding to UTF-8 on all HTML pages (#1467)

This adds the BOM to all HTTP pages as per the HTML5 spec and ensures
all pages use UTF-8 as their meta charset (which is still kept for
compatibility with older browsers).
This commit is contained in:
Ben Davies
2020-02-23 04:13:56 -04:00
committed by GitHub
parent e4e55fbeb9
commit e3fcaa492c
9 changed files with 17 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
<!DOCTYPE html>
<!DOCTYPE html>
<html><head>
<meta charset="utf-8" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Showdown!</title>
<link rel="shortcut icon" href="favicon.ico" id="dynamic-favicon" />