Sha256: 06bde2708458da3799f85cc78ba486b0dc1110550c8046335eb43ab73fa120a3
Contents?: true
Size: 507 Bytes
Versions: 70
Compression:
Stored size: 507 Bytes
Contents
# frozen_string_literal: true module Onebox module Engine class ReplitOnebox include Engine include StandardEmbed matches_regexp(/^https?:\/\/repl\.it\/.+/) always_https def placeholder_html oembed = get_oembed <<-HTML <img src="#{oembed.thumbnail_url}" style="max-width: #{oembed.width}px; max-height: #{oembed.height}px;" #{oembed.title_attr}> HTML end def to_html get_oembed.html end end end end
Version data entries
70 entries across 70 versions & 1 rubygems