From 95c0fe60accc2bc5a8e4d559e0263da977ddbcb2 Mon Sep 17 00:00:00 2001 From: Thomas Reynolds Date: Thu, 14 Nov 2013 16:44:37 +0000 Subject: [PATCH] whoops, bad rename --- .../extensions/automatic_alt_tags.rb | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 middleman-core/lib/middleman-more/extensions/automatic_alt_tags.rb diff --git a/middleman-core/lib/middleman-more/extensions/automatic_alt_tags.rb b/middleman-core/lib/middleman-more/extensions/automatic_alt_tags.rb new file mode 100644 index 00000000..50df3b54 --- /dev/null +++ b/middleman-core/lib/middleman-more/extensions/automatic_alt_tags.rb @@ -0,0 +1,32 @@ +# Automatic Image alt tags from image names extension +class Middleman::Extensions::AutomaticAltTags < ::Middleman::Extension + + def initialize(app, options_hash={}, &block) + super + end + + helpers do + # Override default image_tag helper to automatically insert alt tag + # containing image name. + + def image_tag(path) + if !path.include?("://") + params[:alt] ||= "" + + real_path = path + real_path = File.join(images_dir, real_path) unless real_path.start_with?('/') + full_path = File.join(source_dir, real_path) + + if File.exists?(full_path) + begin + alt_text = File.basename(full_path, ".*") + alt_text.capitalize! + params[:alt] = alt_text + end + end + end + + super(path) + end + end +end