=================================================================== RCS file: /cvs/mandoc/mdoc_html.c,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- mandoc/mdoc_html.c 2010/06/04 22:16:27 1.75 +++ mandoc/mdoc_html.c 2010/06/04 22:26:13 1.76 @@ -1,4 +1,4 @@ -/* $Id: mdoc_html.c,v 1.75 2010/06/04 22:16:27 kristaps Exp $ */ +/* $Id: mdoc_html.c,v 1.76 2010/06/04 22:26:13 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -1590,6 +1590,10 @@ mdoc_fn_pre(MDOC_ARGS) bufcat_su(h, "margin-left", &su); su.scale = -su.scale; bufcat_su(h, "text-indent", &su); + if (n->prev && MDOC_Ft != n->prev->tok) { + SCALE_VS_INIT(&su, 1); + bufcat_su(h, "margin-top", &su); + } if (n->next) { SCALE_VS_INIT(&su, 1); bufcat_su(h, "margin-bottom", &su);