diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-27 09:20:03 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-27 09:20:03 +0000 |
commit | 9a0c4c4571a9055eab5a14fcee755c5dde12f643 (patch) | |
tree | 5cc9b2bd52ac92b447ef9a2b144c2ffce5d0ecdf /html.c | |
parent | 379b6790c4ec053fdda28a8938bc03abc807ebe5 (diff) | |
download | mandoc-9a0c4c4571a9055eab5a14fcee755c5dde12f643.tar.gz |
HTML5-isation: remove more alignments.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) { |