Keep newlines around.

This commit is contained in:
Roger Braun 2017-05-18 16:41:16 +02:00
commit 48f9df2391
3 changed files with 5 additions and 5 deletions

View file

@ -14,13 +14,13 @@ defmodule Pleroma.Web.TwitterAPI.Utils do
"<a href='#{href}' class='attachment'>#{Path.basename(href)}</a>"
_ -> ""
end)
Enum.join([text | attachment_text], "<br>")
Enum.join([text | attachment_text], "<br>\n")
end
def format_input(text, mentions) do
HtmlSanitizeEx.strip_tags(text)
|> Formatter.linkify
|> String.replace("\n", "<br>")
|> String.replace("\n", "<br>\n")
|> add_user_links(mentions)
end