Sha256: d2807f607aa1f10673727fe5e6b46c9d1f198e31a0c15c8488da9d960ccbef7e
Contents?: true
Size: 742 Bytes
Versions: 94
Compression:
Stored size: 742 Bytes
Contents
module Onebox module Engine class SlidesOnebox include Engine include StandardEmbed matches_regexp(/^https?:\/\/slides\.com\/[\p{Alnum}_\-]+\/[\p{Alnum}_\-]+$/) def to_html <<-HTML <iframe src="//slides.com#{uri.path}/embed?style=light" width="576" height="420" scrolling="no" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen> </iframe> HTML end def placeholder_html escaped_src = ::Onebox::Helpers.normalize_url_for_output(raw[:image]) "<img src='#{escaped_src}'>" end end end end
Version data entries
94 entries across 94 versions & 1 rubygems