formatter: use Pleroma.HTML module instead of HtmlSanitizeEx directly
[akkoma] / lib / pleroma / formatter.ex
index c0a176184f0b32327b8d646c0c04ab0323123b4d..5b63fb795efbd2cfe4e956ed6f8cd614b99e236b 100644 (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