diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-27 09:13:39 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-27 09:13:39 +0000 |
commit | 379b6790c4ec053fdda28a8938bc03abc807ebe5 (patch) | |
tree | 248dc897582fe48da2fd8810aff552a36560beec /html.c | |
parent | bd0e1539201fad6b2a3f492cabb69c5be5326b02 (diff) | |
download | mandoc-379b6790c4ec053fdda28a8938bc03abc807ebe5.tar.gz |
Continue in HTML5-ing by kicking out some hard-coded alignments.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -197,8 +197,12 @@ print_gen_head(struct html *h) tag[0].val = "utf-8"; print_otag(h, TAG_META, 1, tag); + /* + * Print a default style-sheet. + */ t = print_otag(h, TAG_STYLE, 0, NULL); - print_text(h, "table.head, table.foot { width: 100%; }\n"); + print_text(h, "table.head, table.foot { width: 100%; }\n" + "td.head-rtitle, td.foot-os { text-align: right; }\n"); print_tagq(h, t); if (h->style) { |