aboutsummaryrefslogtreecommitdiff
path: root/priv/scrubbers/o_embed.ex
blob: ac419f45ddabaae6f87609082689b4d4e6e6d7cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
defmodule Pleroma.HTML.Scrubber.OEmbed do
  @moduledoc """
  Scrubs OEmbed HTML
  """
  require FastSanitize.Sanitizer.Meta
  alias FastSanitize.Sanitizer.Meta

  Meta.strip_comments()

  Meta.allow_tag_with_these_attributes(:iframe, [
    "width",
    "height",
    "src",
    "allowfullscreen"
  ])

  Meta.strip_everything_not_covered()
end