Sha256: 5a758a5c19ddf936dd64b541a9a578da064340718ac563b9778bf7f9036e16e6
Contents?: true
Size: 733 Bytes
Versions: 33
Compression:
Stored size: 733 Bytes
Contents
module Onebox module Engine class ImageOnebox include Engine matches_regexp(/^(https?:)?\/\/.+\.(png|jpg|jpeg|gif|bmp|tif|tiff)(\?.*)?$/i) def always_https? WhitelistedGenericOnebox.host_matches(uri, WhitelistedGenericOnebox.https_hosts) end def to_html # Fix Dropbox image links if @url[/^https:\/\/www.dropbox.com\/s\//] @url.sub!("https://www.dropbox.com", "https://dl.dropboxusercontent.com") end escaped_url = ::Onebox::Helpers.normalize_url_for_output(@url) <<-HTML <a href="#{escaped_url}" target="_blank" class="onebox"> <img src="#{escaped_url}"> </a> HTML end end end end
Version data entries
33 entries across 33 versions & 1 rubygems