mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2024-12-27 03:35:05 +01:00
Merge branch 'feature/formatter-consistent-hashtag-mentions' into 'develop'
formatter: consistent presentation of hashtags and mentions See merge request pleroma/pleroma!280
This commit is contained in:
commit
c1b8a6a73b
@ -109,7 +109,7 @@ defmodule Pleroma.Web.CommonAPI.Utils do
|
||||
|> Enum.sort_by(fn {tag, _} -> -String.length(tag) end)
|
||||
|
||||
Enum.reduce(tags, text, fn {full, tag}, text ->
|
||||
url = "#<a href='#{Pleroma.Web.base_url()}/tag/#{tag}' rel='tag'>#{tag}</a>"
|
||||
url = "<a href='#{Pleroma.Web.base_url()}/tag/#{tag}' rel='tag'>##{tag}</a>"
|
||||
String.replace(text, full, url)
|
||||
end)
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user