Browse Source

Fix XHTML

General:
Fix invalid XHTML
(missing close of empty element).
Add leading space before closing empty element for compatibility with
HTML
(http://www.w3.org/TR/xhtml1/#guidelines).
pull/42/head
Helder Magalhães 13 years ago
parent
commit
5065515925
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      README.html

+ 2
- 2
README.html View File

@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>JSON-C - A JSON implementation in C</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<h2>JSON-C - A JSON implementation in C</h2>
@@ -30,6 +30,6 @@
<h3><a href="COPYING">License</a></h3>
<p>This program is free software; you can redistribute it and/or modify it under the terms of the MIT License.</p>

<hr/>
<hr />
</body>
</html>

Loading…
Cancel
Save