Closed
Description
The following command produces output which is rendered incorrectly by current browsers.
$ echo '<!doctype html><html><head><title>ಕನ್ನಡ</title></head><body>ಸವಿಗನ್ನಡ</body></html>' | tidy.exe -i -utf8 -o output.html
Current output.html
<!DOCTYPE html>
<html>
<head>
<meta name="generator" content=
"HTML Tidy for HTML5 for Windows version 5.1.34">
<title>ಕನ್ನಡ</title>
</head>
<body>
ಸವಿಗನ್ನಡ
</body>
</html>
Required output.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="generator" content=
"HTML Tidy for HTML5 for Windows version 5.1.x">
<title>ಕನ್ನಡ</title>
</head>
<body>
ಸವಿಗನ್ನಡ
</body>
</html>