discourse/lib/onebox/engine/five_hundred_px_onebox.rb

19 lines
412 B
Ruby

# frozen_string_literal: true
module Onebox
module Engine
class FiveHundredPxOnebox
include Engine
include StandardEmbed
matches_regexp(%r{^https?://500px\.com/photo/\d+/})
always_https
def to_html
og = get_opengraph
"<img src='#{og.image}' width='#{og.image_width}' height='#{og.image_height}' class='onebox' #{og.title_attr}>"
end
end
end
end