diff --git a/app/lib/formatter.rb b/app/lib/formatter.rb index db5dc0ad..4ee3c234 100644 --- a/app/lib/formatter.rb +++ b/app/lib/formatter.rb @@ -19,11 +19,11 @@ class HTMLRenderer < Redcarpet::Render::HTML def double_emphasis(text) "#{text}" end - + def emphasis(text) "#{text}" end - + def header(text, header_level) "

#{text}

" end @@ -31,15 +31,15 @@ class HTMLRenderer < Redcarpet::Render::HTML def paragraph(text) "

#{text}

" end - + def triple_emphasis(text) "#{text}" end - + def strikethrough(text) "#{text}" end - + def underline(text) "#{text}" end @@ -53,7 +53,7 @@ class HTMLRenderer < Redcarpet::Render::HTML content end end - + def list_item(text, list_type) "
  • #{text}
  • " end @@ -481,8 +481,8 @@ class Formatter end def mention_html(account) - return "@#{encode(account.acct)}" unless account.local? + # return "@#{encode(account.acct)}" unless account.local? "@#{encode(account.acct)}" end -end \ No newline at end of file +end