]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdoc_html.c
test inter-column spacing
[mandoc.git] / mdoc_html.c
index 5cbf68aa8f125f5fa6e575733e6389d495302612..f2d97f3ee56e839b8e2d23d2bbaad9c2194ee0d4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_html.c,v 1.289 2017/05/30 16:31:29 schwarze Exp $ */
+/*     $Id: mdoc_html.c,v 1.291 2017/06/24 14:38:32 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014, 2015, 2016, 2017 Ingo Schwarze <schwarze@openbsd.org>
 /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014, 2015, 2016, 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -27,6 +27,7 @@
 #include <unistd.h>
 
 #include "mandoc_aux.h"
 #include <unistd.h>
 
 #include "mandoc_aux.h"
+#include "mandoc.h"
 #include "roff.h"
 #include "mdoc.h"
 #include "out.h"
 #include "roff.h"
 #include "mdoc.h"
 #include "out.h"
@@ -1322,12 +1323,16 @@ mdoc_lk_pre(MDOC_ARGS)
        punct = punct->next;
 
        /* Link target and link text. */
        punct = punct->next;
 
        /* Link target and link text. */
+       descr = link->next;
+       if (descr == punct)
+               descr = link;  /* no text */
        t = print_otag(h, TAG_A, "cTh", "Lk", link->string);
        t = print_otag(h, TAG_A, "cTh", "Lk", link->string);
-       for (descr = link->next; descr != punct; descr = descr->next) {
+       do {
                if (descr->flags & (NODE_DELIMC | NODE_DELIMO))
                        h->flags |= HTML_NOSPACE;
                print_text(h, descr->string);
                if (descr->flags & (NODE_DELIMC | NODE_DELIMO))
                        h->flags |= HTML_NOSPACE;
                print_text(h, descr->string);
-       }
+               descr = descr->next;
+       } while (descr != punct);
        print_tagq(h, t);
 
        /* Trailing punctuation. */
        print_tagq(h, t);
 
        /* Trailing punctuation. */