diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-09-25 15:51:30 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-09-25 15:51:30 +0000 |
commit | 75e47454ebb9c175bc6a63e6612d125247626e26 (patch) | |
tree | e4f9d701dc3d76685e71c23b18656cf9e93f582b | |
parent | 1a871439301a9e5badf30e99fdad0c68ac99283c (diff) | |
download | mandoc-75e47454ebb9c175bc6a63e6612d125247626e26.tar.gz |
Add `Rs' vertical-space in -T[x]html "SEE ALSO" section. Remove
corresponding TODO entry.
Also have the "." after an `Rs' block trigger inter-sentence spacing.
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | mdoc_html.c | 9 | ||||
-rw-r--r-- | mdoc_term.c | 6 |
3 files changed, 8 insertions, 9 deletions
@@ -157,8 +157,6 @@ see "The route utility provides the following simple commands:" in OpenBSD route(8). -- In -T[x]html, Rs/Re need a div. - ************************************************************************ * performance issues ************************************************************************ diff --git a/mdoc_html.c b/mdoc_html.c index 32334432..2547f190 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -2108,17 +2108,14 @@ static int mdoc_rs_pre(MDOC_ARGS) { struct htmlpair tag; - struct roffsu su; if (MDOC_BLOCK != n->type) return(1); if (n->prev && SEC_SEE_ALSO == n->sec) { - SCALE_VS_INIT(&su, 1); - bufcat_su(h, "margin-top", &su); - PAIR_STYLE_INIT(&tag, h); - print_otag(h, TAG_DIV, 1, &tag); - } + print_otag(h, TAG_BR, 0, NULL); + print_otag(h, TAG_BR, 0, NULL); + } PAIR_CLASS_INIT(&tag, "ref"); print_otag(h, TAG_SPAN, 1, &tag); diff --git a/mdoc_term.c b/mdoc_term.c index 5d758372..f4a9cea2 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -2131,7 +2131,11 @@ termp____post(DECL_ARGS) /* TODO: %U. */ p->flags |= TERMP_NOSPACE; - term_word(p, n->next ? "," : "."); + if (NULL == n->next) { + term_word(p, "."); + p->flags |= TERMP_SENTENCE; + } else + term_word(p, ","); } |