diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-20 10:40:11 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-20 10:40:11 +0000 |
commit | 073891eda234d3d2928f19543a8db60f02cdc36f (patch) | |
tree | d762acac59eaf2e4dae9b4aa1b5ac2d35bed1f09 /html.h | |
parent | 0f7b683510e81e238f298d0a46d4512f599fa533 (diff) | |
download | mandoc-073891eda234d3d2928f19543a8db60f02cdc36f.tar.gz |
Give header and footer table cells default widths (using WIDTH and ALIGN
atttributes) if no style is specified.
Give the default-bold elements a B tag instead of a SPAN tag, as this
can be overriden in the stylesheet.
Prune some unused attributes from html.h.
Diffstat (limited to 'html.h')
-rw-r--r-- | html.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -46,6 +46,7 @@ enum htmltag { TAG_BLOCKQUOTE, TAG_P, TAG_PRE, + TAG_B, TAG_MAX }; @@ -60,10 +61,9 @@ enum htmlattr { ATTR_CLASS, ATTR_STYLE, ATTR_WIDTH, - ATTR_VALIGN, - ATTR_TARGET, ATTR_ID, ATTR_SUMMARY, + ATTR_ALIGN, ATTR_MAX }; |