From: William Pitcock Date: Sun, 14 Oct 2018 20:36:11 +0000 (+0000) Subject: common api: enable tag linking in markdown mode X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=30efa86c05b7747c62ad219e6c000b5c4ce161ae;p=akkoma common api: enable tag linking in markdown mode --- diff --git a/lib/pleroma/web/common_api/utils.ex b/lib/pleroma/web/common_api/utils.ex index 667027c02..4cbbd0c7d 100644 --- a/lib/pleroma/web/common_api/utils.ex +++ b/lib/pleroma/web/common_api/utils.ex @@ -126,6 +126,7 @@ defmodule Pleroma.Web.CommonAPI.Utils do |> String.replace(~r/\r?\n/, "") |> (&{[], &1}).() |> Formatter.add_user_links(mentions) + |> Formatter.add_hashtag_links(tags) |> Formatter.finalize() end