README: Fix charset

I noticed that "Norwegian Bokmål" didn't render correctly in the
browser. Just fixing the xml declaration didn't help, I had to add the
meta element for declaring the charset.

Part-of: <https://gitlab.freedesktop.org/pulseaudio/pavucontrol/-/merge_requests/65>
This commit is contained in:
Tanu Kaskinen 2021-08-15 22:09:24 +03:00
parent 14e7cc0a21
commit e49a10d06f
1 changed files with 2 additions and 1 deletions

View File

@ -1,8 +1,9 @@
<?xml version="1.0" encoding="iso-8859-1"?> <!-- -*-html-helper-*- -->
<?xml version="1.0" encoding="utf-8"?> <!-- -*-html-helper-*- -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>PulseAudio Volume Control @PACKAGE_VERSION@</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>