snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 6f772e477059973f6c5408e380db6409374316bf
parent c016b686293e1b8d8a01dd7608c7ddec249a97b5
Author: default <nobody@localhost>
Date:   Thu, 27 Jun 2024 05:30:53 +0200

Fixed a minor bug in processing Markdown-style links having anchors.

Diffstat:
Mformat.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/format.c b/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, "#", "&#35;"), "[)"); + xs *l = xs_split_n(w, "](", 1); if (xs_list_len(l) == 2) { xs *link = xs_fmt("<a href=\"%s\">%s</a>",