mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 11:15:05 +08:00
26 lines
519 B
Ruby
26 lines
519 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Onebox
|
|
module Engine
|
|
class ReplitOnebox
|
|
include Engine
|
|
include StandardEmbed
|
|
|
|
matches_regexp(%r{^https?://(replit\.com|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
|