From: William Pitcock Date: Mon, 10 Sep 2018 00:33:44 +0000 (+0000) Subject: html: add the ability to override the default scrub policy X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=95376ac1fe7a4d4a30932c6d74ca06782ba7c50a;p=akkoma html: add the ability to override the default scrub policy --- diff --git a/lib/pleroma/html.ex b/lib/pleroma/html.ex index 107784e70..a0c43b82c 100644 --- a/lib/pleroma/html.ex +++ b/lib/pleroma/html.ex @@ -3,9 +3,13 @@ defmodule Pleroma.HTML do @markup Application.get_env(:pleroma, :markup) + def filter_tags(html, scrubber) do + html |> Scrubber.scrub(scrubber) + end + def filter_tags(html) do scrubber = Keyword.get(@markup, :scrub_policy) - html |> Scrubber.scrub(scrubber) + filter_tags(html, scrubber) end def strip_tags(html) do