-/* $Id: man_html.c,v 1.46 2010/12/05 16:14:16 kristaps Exp $ */
+/* $Id: man_html.c,v 1.47 2010/12/06 13:53:07 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
struct roffsu su;
int i;
- if (MAN_BLOCK != n->type)
+ if (MAN_BODY == n->type)
return(1);
+ if (MAN_HEAD == n->type)
+ return(0);
i = 0;
PAIR_STYLE_INIT(&tag, h);
print_otag(h, TAG_DIV, i, &tag);
+
return(1);
}
-/* $Id: man_term.c,v 1.86 2010/12/05 16:14:16 kristaps Exp $ */
+/* $Id: man_term.c,v 1.87 2010/12/06 13:53:07 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
break;
}
- return(1);
+ return(MAN_HEAD != n->type);
}