mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
14 lines
244 B
Ruby
14 lines
244 B
Ruby
|
require_dependency 'oneboxer/base_onebox'
|
||
|
|
||
|
module Oneboxer
|
||
|
class ImageOnebox < BaseOnebox
|
||
|
|
||
|
matcher /^https?:\/\/.*\.(jpg|png|gif|jpeg)$/
|
||
|
|
||
|
def onebox
|
||
|
"<a href='#{@url}' target='_blank'><img src='#{@url}'></a>"
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|