mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 10:13:45 +08:00
14 lines
281 B
Ruby
14 lines
281 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Onebox
|
||
|
module Engine
|
||
|
module OpengraphImage
|
||
|
|
||
|
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
|