From fcf2747308c65c3061028c136599b25ed9aa77ae Mon Sep 17 00:00:00 2001 From: default Date: Thu, 20 Oct 2022 11:14:30 +0200 Subject: [PATCH] Links in created Notes now include a target=_blank. --- format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.c b/format.c index f0f4298..69efbdb 100644 --- a/format.c +++ b/format.c @@ -73,7 +73,7 @@ d_char *not_really_markdown(char *content, d_char **f_content) } else if (xs_startswith(v, "http")) { - xs *s1 = xs_fmt("%s", v, v); + xs *s1 = xs_fmt("%s", v, v); wrk = xs_str_cat(wrk, s1); } else