Re-apply 15ca8db58d
which got lost in a merge
This commit is contained in:
parent
25820a9100
commit
e68c74b4f7
|
@ -30,11 +30,7 @@ module Middleman
|
|||
# @param [Hash] params
|
||||
# @return [String]
|
||||
def image_tag(path, params={})
|
||||
params[:supported_extensions] ||= %w(.png .jpg .jpeg .bmp .gif)
|
||||
|
||||
if !params.has_key?(:width) && !params.has_key?(:height) && !path.include?("://") &&
|
||||
params[:supported_extensions].include?(File.extname(path).downcase)
|
||||
|
||||
if !params.has_key?(:width) && !params.has_key?(:height) && !path.include?("://")
|
||||
params[:alt] ||= ""
|
||||
|
||||
real_path = path
|
||||
|
@ -54,8 +50,6 @@ module Middleman
|
|||
end
|
||||
end
|
||||
|
||||
params.delete(:supported_extensions)
|
||||
|
||||
super(path, params)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue