summaryrefslogtreecommitdiffstats
path: root/html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 09:20:03 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 09:20:03 +0000
commit9a0c4c4571a9055eab5a14fcee755c5dde12f643 (patch)
tree5cc9b2bd52ac92b447ef9a2b144c2ffce5d0ecdf /html.c
parent379b6790c4ec053fdda28a8938bc03abc807ebe5 (diff)
downloadmandoc-9a0c4c4571a9055eab5a14fcee755c5dde12f643.tar.gz
HTML5-isation: remove more alignments.
Diffstat (limited to 'html.c')
-rw-r--r--html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.c b/html.c
index 6220e223..86ec9452 100644
--- a/html.c
+++ b/html.c
@@ -87,7 +87,6 @@ static const char *const htmlattrs[ATTR_MAX] = {
"style", /* ATTR_STYLE */
"width", /* ATTR_WIDTH */
"id", /* ATTR_ID */
- "align", /* ATTR_ALIGN */
"colspan", /* ATTR_COLSPAN */
"charset", /* ATTR_CHARSET */
};
@@ -202,7 +201,8 @@ print_gen_head(struct html *h)
*/
t = print_otag(h, TAG_STYLE, 0, NULL);
print_text(h, "table.head, table.foot { width: 100%; }\n"
- "td.head-rtitle, td.foot-os { text-align: right; }\n");
+ "td.head-rtitle, td.foot-os { text-align: right; }\n"
+ "td.head-vol { text-align: center; }\n");
print_tagq(h, t);
if (h->style) {