Revert "Remove newlines completely so mastodon doesn't bug out."
This reverts commit 0ca3ab7b59.
This commit is contained in:
parent
0ca3ab7b59
commit
3063e3b440
3 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue