diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-12-22 00:33:26 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-12-22 00:33:26 +0000 |
commit | 5bca8c87aa3b70e00f4b73e56faf7c15f88da7c4 (patch) | |
tree | 97fdb71c0778e95fa50467445c8be6b092b37c8b /usr.bin/mandoc/html.h | |
parent | 5cd3cede271315b76f2569e8a445433900fc0982 (diff) |
More small -Thtml improvements by kristaps@,
in particular, use <B>, <I> and <U> where appropriate.
Provide relative widths for header and footer lines.
Manuals: More concise short descriptions of output modes.
Correct a few places still talking about CSS2 to say CSS1.
Code examples should use .Dl, not .D1.
Diffstat (limited to 'usr.bin/mandoc/html.h')
-rw-r--r-- | usr.bin/mandoc/html.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/mandoc/html.h b/usr.bin/mandoc/html.h index 76850272d5a..d6d3c9453d6 100644 --- a/usr.bin/mandoc/html.h +++ b/usr.bin/mandoc/html.h @@ -1,4 +1,4 @@ -/* $Id: html.h,v 1.9 2010/12/19 09:22:35 schwarze Exp $ */ +/* $Id: html.h,v 1.10 2010/12/22 00:33:25 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -46,6 +46,9 @@ enum htmltag { TAG_BLOCKQUOTE, TAG_P, TAG_PRE, + TAG_B, + TAG_I, + TAG_U, TAG_MAX }; @@ -60,10 +63,9 @@ enum htmlattr { ATTR_CLASS, ATTR_STYLE, ATTR_WIDTH, - ATTR_VALIGN, - ATTR_TARGET, ATTR_ID, ATTR_SUMMARY, + ATTR_ALIGN, ATTR_MAX }; |