From 73f012133ab7ba26e2279ddcb988873bdfd19663 Mon Sep 17 00:00:00 2001 From: minils Date: Wed, 17 Feb 2021 23:25:59 +0100 Subject: Add different formating with less contrast for markup strings like *,_,~ and `. (#883) --- main/src/ui/util/helper.vala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main/src/ui/util/helper.vala b/main/src/ui/util/helper.vala index b147e5d7..b6c9cb5a 100644 --- a/main/src/ui/util/helper.vala +++ b/main/src/ui/util/helper.vala @@ -299,7 +299,9 @@ public static string parse_add_markup(string s_, string? highlight_word, bool pa int start, end; match_info.fetch_pos(2, out start, out end); return parse_add_markup(s[0:start-1], highlight_word, parse_links, parse_text_markup, already_escaped) + - s[start-1:start] + @"<$(convenience_tag[i])>" + s[start:end] + @"" + s[end:end+1] + + "" + s[start-1:start] + "" + + @"<$(convenience_tag[i])>" + s[start:end] + @"" + + "" + s[end:end+1] + "" + parse_add_markup(s[end+1:s.length], highlight_word, parse_links, parse_text_markup, already_escaped); } } catch (RegexError e) { -- cgit v1.2.3-54-g00ecf