Reorder html5 document template (#393)

The encoding `<meta charset="UTF-8>` is usually declared before any text-containing elements such as the `<title>`.

p.s. Emmet follows this ordering too
This commit is contained in:
ye-chuan 2024-02-12 12:33:39 +08:00 committed by GitHub
parent 4368924cc4
commit 7d5f845640
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -311,9 +311,9 @@
"<!DOCTYPE html>",
"<html lang=\"$1en\">",
"\t<head>",
"\t\t<title>$2</title>",
"\t\t<meta charset=\"UTF-8\">",
"\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">",
"\t\t<title>$2</title>",
"\t\t<link href=\"$3css/style.css\" rel=\"stylesheet\">",
"\t</head>",
"\t<body>",