aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/html.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-12-20 10:40:11 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-12-20 10:40:11 +0000
commitf42a91b55dfcddcdd77e9ff190a164c0bd531eb5 (patch)
tree8f04bcd668ff7082d829efcdf37e59779b5c525e /html.h
parentb9769fb9bff61e16a65f5a5ef15d86433a612671 (diff)
downloadmandoc-f42a91b55dfcddcdd77e9ff190a164c0bd531eb5.tar.gz
mandoc-f42a91b55dfcddcdd77e9ff190a164c0bd531eb5.tar.zst
mandoc-f42a91b55dfcddcdd77e9ff190a164c0bd531eb5.zip
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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/html.h b/html.h
index 46230360..960fb27c 100644
--- a/html.h
+++ b/html.h
@@ -1,4 +1,4 @@
-/* $Id: html.h,v 1.31 2010/12/17 10:37:26 kristaps Exp $ */
+/* $Id: html.h,v 1.32 2010/12/20 10:40:11 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -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
};