diff options
author | Francis Dinh <normandy@firemail.cc> | 2018-03-27 02:00:04 -0400 |
---|---|---|
committer | Francis Dinh <normandy@firemail.cc> | 2018-03-27 02:00:04 -0400 |
commit | 61692c7efae4f8c6dc0e5b07276979f4237dee33 (patch) | |
tree | 85b3620a3eba117bea184e9cf3827285b3fbeeaa /lib | |
parent | bd4926288e6b5d8d3e4439d83e30fa0211045d0b (diff) | |
download | pleroma-61692c7efae4f8c6dc0e5b07276979f4237dee33.tar.gz |
Include the '#' symbol into the link itself
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/formatter.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/formatter.ex b/lib/pleroma/formatter.ex index 2d3487f6a..4afc73bf4 100644 --- a/lib/pleroma/formatter.ex +++ b/lib/pleroma/formatter.ex @@ -189,7 +189,7 @@ defmodule Pleroma.Formatter do end) 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} end) |