Don't insert newlines to generated HTML.
MastoFE doesn't like them.
This commit is contained in:
parent
66e78c3ec4
commit
fb118b2978
3 changed files with 4 additions and 4 deletions
|
|
@ -54,14 +54,14 @@ defmodule Pleroma.Web.CommonAPI.Utils do
|
|||
"<a href=\"#{href}\" class='attachment'>#{shortname(name)}</a>"
|
||||
_ -> ""
|
||||
end)
|
||||
Enum.join([text | attachment_text], "<br>\n")
|
||||
Enum.join([text | attachment_text], "<br>")
|
||||
end
|
||||
|
||||
def format_input(text, mentions, tags) do
|
||||
Phoenix.HTML.html_escape(text)
|
||||
|> elem(1)
|
||||
|> Formatter.linkify
|
||||
|> String.replace("\n", "<br>\n")
|
||||
|> String.replace("\n", "<br>")
|
||||
|> add_user_links(mentions)
|
||||
# |> add_tag_links(tags)
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue