Keep newlines around.
This commit is contained in:
parent
a92a9dce94
commit
48f9df2391
3 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue