Revert "Remove newlines completely so mastodon doesn't bug out."

This reverts commit 0ca3ab7b59.
This commit is contained in:
Roger Braun 2017-07-31 13:27:19 +02:00
commit 3063e3b440
3 changed files with 4 additions and 4 deletions

View file

@ -15,13 +15,13 @@ defmodule Pleroma.Web.TwitterAPI.Utils do
"<a href=\"#{URI.encode(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