aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorlambda <pleromagit@rogerbraun.net>2018-03-27 06:27:12 +0000
committerlambda <pleromagit@rogerbraun.net>2018-03-27 06:27:12 +0000
commit2e683b10d54030c045c570b6ce44b9b3291ae6e1 (patch)
treea9bdbf09acb9c631820851a0497e714f0ec42c68 /lib
parentbd4926288e6b5d8d3e4439d83e30fa0211045d0b (diff)
parent9556c8f6e720a1b63df16d7165a40936b52fc0b4 (diff)
downloadpleroma-2e683b10d54030c045c570b6ce44b9b3291ae6e1.tar.gz
Merge branch 'fix/hashtag-consistency' into 'develop'
Include the '#' symbol into the hashtag link itself See merge request pleroma/pleroma!85
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/formatter.ex2
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)