diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-02-17 19:48:33 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-02-17 19:48:33 +0000 |
commit | 91dc9c124d68d9d811882761bd9f218f7728cf71 (patch) | |
tree | 69a51bb624f2859759adb8de895fb695d0dcaa21 | |
parent | 2515ed1a1dc68f42a22e20e34eb37840b96ced0c (diff) | |
download | mandoc-91dc9c124d68d9d811882761bd9f218f7728cf71.tar.gz |
Fixed printing of XHTML DOCTYPE "html" vs. "HTML".
-rw-r--r-- | html.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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); } |