diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-20 05:45:21 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-20 05:45:21 +0000 |
commit | 422079710d40c20911324bf203bb9a89dc3e54ed (patch) | |
tree | 79034da20c02e3d2a737650b9d28490bb3ba6a79 /mdoc_html.c | |
parent | 4adbe5cf76760740befd56e2a28d830dcc269c21 (diff) | |
download | mandoc-422079710d40c20911324bf203bb9a89dc3e54ed.tar.gz |
More updates to mdoc.7.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index d8db4417..dc7b1200 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1274,6 +1274,8 @@ mdoc_d1_pre(MDOC_ARGS) if (MDOC_BLOCK != n->type) return(1); + /* FIXME: D1 shouldn't be literal. */ + SCALE_VS_INIT(&su, INDENT - 2); bufcat_su(h, "margin-left", &su); PAIR_CLASS_INIT(&tag[0], "lit"); @@ -1289,20 +1291,20 @@ mdoc_sx_pre(MDOC_ARGS) { struct htmlpair tag[2]; const struct mdoc_node *nn; - char lbuf[BUFSIZ]; + char buf[BUFSIZ]; /* FIXME: duplicates? */ - (void)strlcpy(lbuf, "#", BUFSIZ); + (void)strlcpy(buf, "#", BUFSIZ); for (nn = n->child; nn; nn = nn->next) { - (void)strlcat(lbuf, nn->string, BUFSIZ); + (void)strlcat(buf, nn->string, BUFSIZ); if (nn->next) - (void)strlcat(lbuf, "_", BUFSIZ); + (void)strlcat(buf, "_", BUFSIZ); } PAIR_CLASS_INIT(&tag[0], "link-sec"); tag[1].key = ATTR_HREF; - tag[1].val = lbuf; + tag[1].val = buf; print_otag(h, TAG_A, 2, tag); return(1); |