pleroma/priv/scrubbers/o_embed.ex

19 lines
344 B
Elixir
Raw Normal View History

2021-05-04 16:29:25 -07:00
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