From 6f772e477059973f6c5408e380db6409374316bf Mon Sep 17 00:00:00 2001 From: default Date: Thu, 27 Jun 2024 05:30:53 +0200 Subject: [PATCH] Fixed a minor bug in processing Markdown-style links having anchors. --- format.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/format.c b/format.c index 1020ddd..c30fd5d 100644 --- 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, "#", "#"), "[)"); + xs *l = xs_split_n(w, "](", 1); if (xs_list_len(l) == 2) { xs *link = xs_fmt("%s",