mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 11:19:19 +00:00
Include the '#' symbol into the link itself
This commit is contained in:
parent
bd4926288e
commit
61692c7efa
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ defmodule Pleroma.Formatter do
|
||||||
end)
|
end)
|
||||||
|
|
||||||
subs = subs ++ Enum.map(tags, fn ({_, tag, uuid}) ->
|
subs = subs ++ Enum.map(tags, fn ({_, tag, uuid}) ->
|
||||||
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>"
|
||||||
{uuid, url}
|
{uuid, url}
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue