summaryrefslogtreecommitdiffstats
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-08-18 09:16:01 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-08-18 09:16:01 +0000
commit9349ecb7e09b4765bdc532b9f91cff348dc1525b (patch)
treebdbde476c85da0d7c1c688d0c57598149ebe324c /mdoc_html.c
parent38ad67c3a787994738cf6778016cb7174ed79e4e (diff)
downloadmandoc-9349ecb7e09b4765bdc532b9f91cff348dc1525b.tar.gz
Align `-offset indent' and `D1' by forcing BLOCKQUOTE to have a 5ex
margin. This is dubious: the HTML4 spec specifically says that BLOCKQUOTE shouldn't be abused for indentation, which is exactly what we do. However, `D1' needs indentation and it's the only way to force text browsers to do so. Alternatives? Also remove the unused HALFINDENT defines while here.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 281f557c..bde42bc3 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -34,7 +34,6 @@
#include "main.h"
#define INDENT 5
-#define HALFINDENT 3
#define MDOC_ARGS const struct mdoc_meta *m, \
const struct mdoc_node *n, \
@@ -353,10 +352,8 @@ a2offs(const char *p, struct roffsu *su)
SCALE_HS_INIT(su, INDENT);
else if (0 == strcmp(p, "indent-two"))
SCALE_HS_INIT(su, INDENT * 2);
- else if ( ! a2roffsu(p, su, SCALE_MAX)) {
- su->unit = SCALE_BU;
- su->scale = html_strlen(p);
- }
+ else if ( ! a2roffsu(p, su, SCALE_MAX))
+ SCALE_HS_INIT(su, html_strlen(p));
}