Fixes img tag properties
This commit is contained in:
parent
ab62bb9355
commit
fdf6af1d25
@ -30,9 +30,9 @@ module Jekyll
|
|||||||
@img['title'] = title
|
@img['title'] = title
|
||||||
@img['alt'] = alt
|
@img['alt'] = alt
|
||||||
else
|
else
|
||||||
@img['alt'] = @img['title'].gsub!(/"/, '"')
|
@img['alt'] = @img['title'].gsub!(/"/, '"') if @img['title']
|
||||||
end
|
end
|
||||||
@img['class'].gsub!(/"/, '')
|
@img['class'].gsub!(/"/, '') if @img['class']
|
||||||
end
|
end
|
||||||
super
|
super
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user