formatter: use Pleroma.HTML module instead of HtmlSanitizeEx directly

stable
William Pitcock 6 years ago
parent 16307da311
commit 52b05137c5

@ -193,7 +193,7 @@ defmodule Pleroma.Formatter do
# TODO: make it use something other than @link_regex # TODO: make it use something other than @link_regex
def html_escape(text, "text/html") do def html_escape(text, "text/html") do
HtmlSanitizeEx.basic_html(text) HTML.filter_tags(text)
end end
def html_escape(text, "text/plain") do def html_escape(text, "text/plain") do

Loading…
Cancel
Save