diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-09-26 09:12:03 -0500 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-09-26 09:12:03 -0500 |
commit | 02433114c53d2fb95ebbda6179cd058c2057f142 (patch) | |
tree | f45705636a2d29fe3fce4632f3ed2eae18e30928 /plugins | |
parent | 7a7825f6679ec91df7df3993f58238e021f82675 (diff) | |
parent | fdf6af1d25ddc991c96dc3b4df5f7e913adcd7ef (diff) | |
download | my_new_personal_website-02433114c53d2fb95ebbda6179cd058c2057f142.tar.xz my_new_personal_website-02433114c53d2fb95ebbda6179cd058c2057f142.zip |
Merge branch 'master' of github.com:imathis/octopress
Diffstat (limited to '')
-rw-r--r-- | plugins/image_tag.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/image_tag.rb b/plugins/image_tag.rb index 20595cb9..45670007 100644 --- a/plugins/image_tag.rb +++ b/plugins/image_tag.rb @@ -30,9 +30,9 @@ module Jekyll @img['title'] = title @img['alt'] = alt else - @img['alt'] = @img['title'].gsub!(/"/, '"') + @img['alt'] = @img['title'].gsub!(/"/, '"') if @img['title'] end - @img['class'].gsub!(/"/, '') + @img['class'].gsub!(/"/, '') if @img['class'] end super end |