[BACK]Return to html.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/html.c between version 1.269 and 1.270

version 1.269, 2020/04/19 15:16:56 version 1.270, 2020/04/20 13:07:24
Line 383  html_make_id(const struct roff_node *n, int unique)
Line 383  html_make_id(const struct roff_node *n, int unique)
          * permitted in URL-fragment strings according to the           * permitted in URL-fragment strings according to the
          * explicit list at:           * explicit list at:
          * https://url.spec.whatwg.org/#url-fragment-string           * https://url.spec.whatwg.org/#url-fragment-string
            * In addition, reserve '~' for ordinal suffixes.
          */           */
   
         for (cp = buf; *cp != '\0'; cp++)          for (cp = buf; *cp != '\0'; cp++)
                 if (isalnum((unsigned char)*cp) == 0 &&                  if (isalnum((unsigned char)*cp) == 0 &&
                     strchr("!$&'()*+,-./:;=?@_~", *cp) == NULL)                      strchr("!$&'()*+,-./:;=?@_", *cp) == NULL)
                         *cp = '_';                          *cp = '_';
   
         if (unique == 0)          if (unique == 0)
Line 407  html_make_id(const struct roff_node *n, int unique)
Line 408  html_make_id(const struct roff_node *n, int unique)
   
         if (entry->ord > 1) {          if (entry->ord > 1) {
                 cp = buf;                  cp = buf;
                 mandoc_asprintf(&buf, "%s_%d", cp, entry->ord);                  mandoc_asprintf(&buf, "%s~%d", cp, entry->ord);
                 free(cp);                  free(cp);
         }          }
         return buf;          return buf;

Legend:
Removed from v.1.269  
changed lines
  Added in v.1.270

CVSweb