mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 11:40:27 +03:00
Fixed a minor bug in processing Markdown-style links having anchors.
This commit is contained in:
parent
c016b68629
commit
6f772e4770
4
format.c
4
format.c
@ -143,8 +143,8 @@ static xs_str *format_line(const char *line, xs_list **attach)
|
||||
else
|
||||
if (*v == '[') {
|
||||
/* markdown-like links [label](url) */
|
||||
xs *w = xs_strip_chars_i(xs_dup(v), "[)");
|
||||
xs *l = xs_split_n(w, "](", 1);
|
||||
xs *w = xs_strip_chars_i(xs_replace(v, "#", "#"), "[)");
|
||||
xs *l = xs_split_n(w, "](", 1);
|
||||
|
||||
if (xs_list_len(l) == 2) {
|
||||
xs *link = xs_fmt("<a href=\"%s\">%s</a>",
|
||||
|
Loading…
Reference in New Issue
Block a user