diff --git a/kallithea/lib/helpers.py b/kallithea/lib/helpers.py --- a/kallithea/lib/helpers.py +++ b/kallithea/lib/helpers.py @@ -1383,21 +1383,6 @@ def urlify_issues(newtext, repository, l return newtext -def rst(source): - return literal('
%s
' % - MarkupRenderer.rst(source)) - - -def rst_w_mentions(source): - """ - Wrapped rst renderer with @mention highlighting - - :param source: - """ - return literal('
%s
' % - MarkupRenderer.rst_with_mentions(source)) - - def _mentions_replace(match_obj): return '@%s' % match_obj.group(1)