mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 11:23:25 +08:00
19 lines
412 B
Ruby
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
|