# frozen_string_literal: true module Onebox module Engine class MixcloudOnebox include Engine include StandardEmbed matches_regexp(%r{^https?://www\.mixcloud\.com/}) always_https requires_iframe_origins "https://www.mixcloud.com" def placeholder_html oembed = get_oembed <<-HTML HTML end def to_html get_oembed.html end end end end