plugins/image_tag.rb
a2bc6f97
 # Title: Simple Image tag for Jekyll
 # Author: Brandon Mathis http://brandonmathis.com
 # Description: Easily output images with optional class names and title/alt attributes
 #
 # Syntax {% image [class name(s)] url [title text] %}
 #
 # Example:
a80cb12c
 # {% ima left half http://site.com/images/ninja.png Ninja Attack! %}
a2bc6f97
 #
 # Output:
 # <image class='left' src="http://site.com/images/ninja.png" title="Ninja Attack!" alt="Ninja Attack!">
 #
 
 module Jekyll
 
   class ImageTag < Liquid::Tag
     @img = nil
     @title = nil
     @class = ''
c837acd4
     @width = ''
     @height = ''
a2bc6f97
 
     def initialize(tag_name, markup, tokens)
c837acd4
       if markup =~ /(\S.*\s+)?(https?:\/\/|\/)(\S+)(\s+\d+\s+\d+)?(\s+.+)?/i
         @class = $1 || ''
a2bc6f97
         @img = $2 + $3
c837acd4
         if $5
           @title = $5.strip
         end
         if $4 =~ /\s*(\d+)\s+(\d+)/
           @width = $1
           @height = $2
         end
a2bc6f97
       end
       super
     end
 
     def render(context)
       output = super
       if @img
c837acd4
         "<img class='#{@class}' src='#{@img}' width='#{@width}' height='#{@height}' alt='#{@title}' title='#{@title}'>"
a2bc6f97
       else
c837acd4
         "Error processing input, expected syntax: {% img [class name(s)] /url/to/image [width height] [title text] %}"
a2bc6f97
       end
     end
   end
 end
 
 Liquid::Template.register_tag('img', Jekyll::ImageTag)