diff --git a/index.html b/index.html
index bd587f5..92c7594 100644
--- a/index.html
+++ b/index.html
@@ -336,7 +336,7 @@ npm run build-electron-{windows, darwin, linux}
<> |
+ -->
|
diff --git a/js/filters.js b/js/filters.js
index 8383769..9e5db35 100644
--- a/js/filters.js
+++ b/js/filters.js
@@ -239,8 +239,7 @@ weechat.filter('prefixlimit', function() {
weechat.filter('codify', function() {
return function(text) {
- var re = /(`[^``]+`)/g;
-
+ var re = /(`.+?`)/g;
return text.replace(re, function(z) {
var rr = '' + z.slice(1, z.length-1) + '
';
return rr;