Adding utf-8 encoding to hello world's html template (#168162)

Found this while running `hello_world` with web hot reload. DDC's new
module system expects 'utf-8' encoding.
This commit is contained in:
MarkZ 2025-05-05 12:42:24 -07:00 committed by GitHub
parent bd130eaf53
commit 2e455eb59a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,7 @@ Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. --> found in the LICENSE file. -->
<html> <html>
<head> <head>
<meta charset="UTF-8">
<title>Hello, World</title> <title>Hello, World</title>
</head> </head>
<body> <body>