From 5a4e50935956e9311f5471f4c8297bcc10716e9e Mon Sep 17 00:00:00 2001
From: fiaxh <git@lightrise.org>
Date: Fri, 28 Dec 2018 15:04:50 +0100
Subject: [PATCH] Improve message markup parsing

---
 main/src/ui/util/helper.vala | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/main/src/ui/util/helper.vala b/main/src/ui/util/helper.vala
index da78b485..ecfe87a8 100644
--- a/main/src/ui/util/helper.vala
+++ b/main/src/ui/util/helper.vala
@@ -200,14 +200,13 @@ public static string parse_add_markup(string s_, string? highlight_word, bool pa
         string[] convenience_tag = new string[]{"tt", "i", "b"};
 
         for (int i = 0; i < markup_string.length; i++) {
-            Regex regex = new Regex(Regex.escape_string(markup_string[i]) + ".+" + Regex.escape_string(markup_string[i]));
+            string markup_esc = Regex.escape_string(markup_string[i]);
+            Regex regex = new Regex("(^|\\s)" + markup_esc + "(\\S.*?\\S|\\S)" + markup_esc + "($|\\s)");
             MatchInfo match_info;
             regex.match(s.down(), 0, out match_info);
             if (match_info.matches()) {
                 int start, end;
-                match_info.fetch_pos(0, out start, out end);
-                start += markup_string[i].length;
-                end -= markup_string[i].length;
+                match_info.fetch_pos(2, out start, out end);
                 return parse_add_markup(s[0:start], highlight_word, parse_links, parse_text_markup, already_escaped) +
                     @"<$(convenience_tag[i])>" + s[start:end] + @"</$(convenience_tag[i])>" +
                     parse_add_markup(s[end:s.length], highlight_word, parse_links, parse_text_markup, already_escaped);