formatter: use Pleroma.HTML module instead of HtmlSanitizeEx directly

This commit is contained in:
William Pitcock 2018-09-09 23:40:24 +00:00
parent 16307da311
commit 52b05137c5
1 changed files with 1 additions and 1 deletions

View File

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