summaryrefslogtreecommitdiffstats
path: root/html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-09-21 14:08:13 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-09-21 14:08:13 +0000
commit40507d223c6573922c1060cde7364f905511b303 (patch)
treecd7eee10e785f4eb80cbe38dac42b814a488a715 /html.c
parent29580f6bb757a73803c2045973d9662097988ab1 (diff)
downloadmandoc-40507d223c6573922c1060cde7364f905511b303.tar.gz
Fix height of hard-breaks in -Thtml.
Diffstat (limited to 'html.c')
-rw-r--r--html.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/html.c b/html.c
index f46a714e..8f215d84 100644
--- a/html.c
+++ b/html.c
@@ -2168,13 +2168,19 @@ mdoc_sp_pre(MDOC_ARGS)
int len;
struct htmlpair tag;
- if (MDOC_sp == n->tok)
+ switch (n->tok) {
+ case (MDOC_sp):
len = n->child ? atoi(n->child->string) : 1;
- else
+ break;
+ case (MDOC_br):
+ len = 0;
+ break;
+ default:
len = 1;
+ break;
+ }
buffmt("height: %dem", len);
-
tag.key = ATTR_STYLE;
tag.val = buf;
print_otag(h, TAG_DIV, 1, &tag);