Bold only title in markdown link

main
cel 5 years ago
parent d8ef103016
commit e61a89defd
Signed by: cel
GPG Key ID: C28D95BB012367EA

@ -140,9 +140,9 @@ static int write_zet_link(int fd, const char *id, const char *title) {
if (title == NULL) {
return dprintf(fd, " <a href=\"%s\"><strong><code>§%s</code></strong></a>", id, id);
}
int rc = dprintf(fd, " <a href=\"%s\"><strong>[", id);
int rc = dprintf(fd, " <a href=\"%s\">[<strong>", id);
rc |= write_html(fd, title, strlen(title));
rc |= dprintf(fd, "](<code>§%s</code>)</strong></a>", id);
rc |= dprintf(fd, "</strong>](<code>§%s</code>)</a>", id);
return rc;
}

Loading…
Cancel
Save