-/* ARGSUSED */
-static int
-man_HP_pre(MAN_ARGS)
-{
- struct htmlpair tag;
- struct roffsu su;
- const struct man_node *np;
-
- np = MAN_BLOCK == n->type ?
- n->head->child :
- n->parent->head->child;
-
- if (NULL == np || ! a2width(np, &su))
- SCALE_HS_INIT(&su, INDENT);
-
- if (MAN_HEAD == n->type) {
- print_otag(h, TAG_TD, 0, NULL);
- return(0);
- } else if (MAN_BLOCK == n->type) {
- print_otag(h, TAG_P, 0, NULL);
- print_otag(h, TAG_TABLE, 0, NULL);
- bufcat_su(h, "width", &su);
- PAIR_STYLE_INIT(&tag, h);
- print_otag(h, TAG_COL, 1, &tag);
- print_otag(h, TAG_COL, 0, NULL);
- print_otag(h, TAG_TBODY, 0, NULL);
- print_otag(h, TAG_TR, 0, NULL);
- return(1);
+ if (n != NULL && n->next != NULL) {
+ print_otag(h, TAG_I, "");
+ print_text(h, n->next->string);