common api: utils: remove newline to <br> conversion from bare HTML to be consistent with markdown

ok @lanodan
This commit is contained in:
William Pitcock 2019-01-10 03:45:58 +00:00
parent 2ecf81f10c
commit 0bdbd4f968
1 changed files with 0 additions and 1 deletions

View File

@ -136,7 +136,6 @@ defmodule Pleroma.Web.CommonAPI.Utils do
def format_input(text, mentions, _tags, "text/html") do
text
|> Formatter.html_escape("text/html")
|> String.replace(~r/\r?\n/, "<br>")
|> (&{[], &1}).()
|> Formatter.add_user_links(mentions)
|> Formatter.finalize()