diff --git a/src/Quotelinks/Upvotes.coffee b/src/Quotelinks/Upvotes.coffee index 893847c31..b8ad15a1a 100644 --- a/src/Quotelinks/Upvotes.coffee +++ b/src/Quotelinks/Upvotes.coffee @@ -1,7 +1,25 @@ Upvotes = count: {} text: '\u305D\u3046\u3060\u306D' - regexp: /(?:^>.*\n)+\s*(?:\u305D\u3046\u3060\u306D|(?:this(?!\ )|\+1|upvote(?!\ )d?|under[\ -]?rated|\/thread)\b)/gmi + regexp: /// + (?:^>.*\n)+\s* + (?: + \u305D\u3046\u3060\u306D + | + (?: + this(?!\ ) + |\+1 + |upvote(?!\ )d? + |under[\ -]?rated + |\/thread + |10\/10 + |(?:i\ |top\ )*(?:lol|kek)(?:'?d|\.?$) + |(?:fukken\ |fucking\ )?saved + |nice(?!\ ) + ) + \b + ) + ///gmi init: -> return unless g.VIEW in ['thread', 'index'] and Conf['Upvotes']