summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-02-17 19:48:33 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-02-17 19:48:33 +0000
commit91dc9c124d68d9d811882761bd9f218f7728cf71 (patch)
tree69a51bb624f2859759adb8de895fb695d0dcaa21
parent2515ed1a1dc68f42a22e20e34eb37840b96ced0c (diff)
downloadmandoc-91dc9c124d68d9d811882761bd9f218f7728cf71.tar.gz
Fixed printing of XHTML DOCTYPE "html" vs. "HTML".
-rw-r--r--html.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/html.c b/html.c
index 694b48dd..08a83fcf 100644
--- a/html.c
+++ b/html.c
@@ -466,19 +466,23 @@ print_doctype(struct html *h)
{
const char *doctype;
const char *dtd;
+ const char *name;
switch (h->type) {
case (HTML_HTML_4_01_STRICT):
+ name = "HTML";
doctype = "-//W3C//DTD HTML 4.01//EN";
dtd = "http://www.w3.org/TR/html4/strict.dtd";
break;
default:
+ name = "html";
doctype = "-//W3C//DTD XHTML 1.0 Strict//EN";
dtd = "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";
break;
}
- printf("<!DOCTYPE HTML PUBLIC \"%s\" \"%s\">\n", doctype, dtd);
+ printf("<!DOCTYPE %s PUBLIC \"%s\" \"%s\">\n",
+ name, doctype, dtd);
}