module Onebox
module Engine
class TypeformOnebox
include Engine
include StandardEmbed
matches_regexp(/^https?:\/\/[a-z0-9]+\.typeform\.com\/to\/[a-zA-Z0-9]+/)
always_https
def placeholder_html
og = get_opengraph
escaped_src = ::Onebox::Helpers.normalize_url_for_output(og[:image])
""
end
def to_html
og = get_opengraph
escaped_src = ::Onebox::Helpers.normalize_url_for_output(og[:url])
<<-HTML
HTML
end
end
end
end