Merge branch 'formatting-fixes' into 'develop'
Formatting fixes Closes #80 See merge request pleroma/pleroma!22
This commit is contained in:
commit
ed3403ad8b
4 changed files with 9 additions and 7 deletions
|
|
@ -54,13 +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
|
||||
HtmlSanitizeEx.strip_tags(text)
|
||||
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
|
||||
|
|
|
|||
|
|
@ -135,8 +135,9 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter do
|
|||
tags = activity.data["object"]["tag"] || []
|
||||
possibly_sensitive = Enum.member?(tags, "nsfw")
|
||||
|
||||
content = if activity.data["object"]["summary"] do
|
||||
"<span>#{activity.data["object"]["summary"]}</span><br>#{content}</span>"
|
||||
summary = activity.data["object"]["summary"]
|
||||
content = if !!summary and summary != "" do
|
||||
"<span>#{activity.data["object"]["summary"]}</span><br />#{content}</span>"
|
||||
else
|
||||
content
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue