diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-11-15 06:45:31 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-11-15 06:45:31 +0000 |
commit | fa9a2e0d50be030033511e2b3b535729529d8696 (patch) | |
tree | a7a7bc544519f9ed318e89202e3f0569a19d5656 /man_html.c | |
parent | 4e79e898c4b9d864a069a79b6221f95ba6189c5d (diff) | |
download | mandoc-fa9a2e0d50be030033511e2b3b535729529d8696.tar.gz |
\f escapes appear to work properly for -Thtml -man. Needs more testing.
Diffstat (limited to 'man_html.c')
-rw-r--r-- | man_html.c | 29 |
1 files changed, 18 insertions, 11 deletions
@@ -190,9 +190,15 @@ print_man_node(MAN_ARGS) print_text(h, n->string); return; default: + /* + * Close out scope of font prior to opening a macro + * scope. Assert that the metafont is on the top of the + * stack (it's never nested). + */ if (h->metaf) { assert(h->metaf == t); print_tagq(h, h->metaf); + assert(NULL == h->metaf); t = h->tags.head; } if (mans[n->tok].pre) @@ -200,6 +206,9 @@ print_man_node(MAN_ARGS) break; } + if (child && n->child) + print_man_nodelist(m, n->child, h); + print_stagq(h, t); bufinit(h); @@ -386,10 +395,11 @@ man_alt_pre(MAN_ARGS) const struct man_node *nn; struct tag *t; int i; - struct htmlpair tagi, tagb, *tagp; + struct htmlpair tagi, tagb, tagr, *tagp; PAIR_CLASS_INIT(&tagi, "italic"); PAIR_CLASS_INIT(&tagb, "bold"); + PAIR_CLASS_INIT(&tagr, "roman"); for (i = 0, nn = n->child; nn; nn = nn->next, i++) { switch (n->tok) { @@ -400,16 +410,16 @@ man_alt_pre(MAN_ARGS) tagp = i % 2 ? &tagb : &tagi; break; case (MAN_RI): - tagp = i % 2 ? &tagi : NULL; + tagp = i % 2 ? &tagi : &tagr; break; case (MAN_IR): - tagp = i % 2 ? NULL : &tagi; + tagp = i % 2 ? &tagr : &tagi; break; case (MAN_BR): - tagp = i % 2 ? NULL : &tagb; + tagp = i % 2 ? &tagr : &tagb; break; case (MAN_RB): - tagp = i % 2 ? &tagb : NULL; + tagp = i % 2 ? &tagb : &tagr; break; default: abort(); @@ -419,12 +429,9 @@ man_alt_pre(MAN_ARGS) if (i) h->flags |= HTML_NOSPACE; - if (tagp) { - t = print_otag(h, TAG_SPAN, 1, tagp); - print_man_node(m, nn, h); - print_tagq(h, t); - } else - print_man_node(m, nn, h); + t = print_otag(h, TAG_SPAN, 1, tagp); + print_man_node(m, nn, h); + print_tagq(h, t); } return(0); |