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