Sha256: 0917413bfd52b71dddce12f23d95c7a76db950d424dd80b5fc14e95c75417559
Contents?: true
Size: 506 Bytes
Versions: 7
Compression:
Stored size: 506 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
7 entries across 7 versions & 1 rubygems