module Jekyll::Filters

Public Instance Methods

array_to_sentence_string(array) click to toggle source

Join an array of things into a string by separating with commas and the word “and” for the last one.

array - The Array of Strings to join.

Examples

array_to_sentence_string(["apples", "oranges", "grapes"])
# => "apples, oranges, and grapes"

Returns the formatted String.

# File lib/jekyll/filters.rb, line 171
def array_to_sentence_string(array)
  connector = "and"
  case array.length
  when 0
    ""
  when 1
    array[0].to_s
  when 2
    "#{array[0]} #{connector} #{array[1]}"
  else
    "#{array[0...-1].join(', ')}, #{connector} #{array[-1]}"
  end
end
cgi_escape(input) click to toggle source

CGI escape a string for use in a URL. Replaces any special characters with appropriate %XX replacements.

input - The String to escape.

Examples

cgi_escape('foo,bar;baz?')
# => "foo%2Cbar%3Bbaz%3F"

Returns the escaped String.

# File lib/jekyll/filters.rb, line 133
def cgi_escape(input)
  CGI::escape(input)
end
date_to_long_string(date) click to toggle source

Format a date in long format e.g. “27 January 2011”.

date - The Time to format.

Returns the formatted String.

# File lib/jekyll/filters.rb, line 75
def date_to_long_string(date)
  time(date).strftime("%d %B %Y")
end
date_to_rfc822(date) click to toggle source

Format a date according to RFC-822

date - The Time to format.

Examples

date_to_rfc822(Time.now)
# => "Sun, 24 Apr 2011 12:34:46 +0000"

Returns the formatted String.

# File lib/jekyll/filters.rb, line 103
def date_to_rfc822(date)
  time(date).rfc822
end
date_to_string(date) click to toggle source

Format a date in short format e.g. “27 Jan 2011”.

date - the Time to format.

Returns the formatting String.

# File lib/jekyll/filters.rb, line 66
def date_to_string(date)
  time(date).strftime("%d %b %Y")
end
date_to_xmlschema(date) click to toggle source

Format a date for use in XML.

date - The Time to format.

Examples

date_to_xmlschema(Time.now)
# => "2011-04-24T20:34:46+08:00"

Returns the formatted String.

# File lib/jekyll/filters.rb, line 89
def date_to_xmlschema(date)
  time(date).xmlschema
end
group_by(input, property) click to toggle source

Group an array of items by a property

input - the inputted Enumerable property - the property

Returns an array of Hashes, each looking something like this:

{"name"  => "larry"
 "items" => [...] } # all the items where `property` == "larry"
# File lib/jekyll/filters.rb, line 202
def group_by(input, property)
  if groupable?(input)
    input.group_by do |item|
      item_property(item, property).to_s
    end.inject([]) do |memo, i|
      memo << {"name" => i.first, "items" => i.last}
    end
  else
    input
  end
end
inspect(input) click to toggle source

Convert an object into its String representation for debugging

input - The Object to be converted

Returns a String representation of the object.

# File lib/jekyll/filters.rb, line 296
def inspect(input)
  CGI.escapeHTML(input.inspect)
end
jsonify(input) click to toggle source

Convert the input into json string

input - The Array or Hash to be converted

Returns the converted json string

# File lib/jekyll/filters.rb, line 190
def jsonify(input)
  as_liquid(input).to_json
end
markdownify(input) click to toggle source

Convert a Markdown string into HTML output.

input - The Markdown String to convert.

Returns the HTML formatted String.

# File lib/jekyll/filters.rb, line 22
def markdownify(input)
  site = @context.registers[:site]
  converter = site.getConverterImpl(Jekyll::Converters::Markdown)
  converter.convert(input)
end
number_of_words(input) click to toggle source

Count the number of words in the input string.

input - The String on which to operate.

Returns the Integer word count.

# File lib/jekyll/filters.rb, line 156
def number_of_words(input)
  input.split.length
end
pop(array, input = 1) click to toggle source
# File lib/jekyll/filters.rb, line 263
def pop(array, input = 1)
  return array unless array.is_a?(Array)
  new_ary = array.dup
  new_ary.pop(input.to_i || 1)
  new_ary
end
push(array, input) click to toggle source
# File lib/jekyll/filters.rb, line 270
def push(array, input)
  return array unless array.is_a?(Array)
  new_ary = array.dup
  new_ary.push(input)
  new_ary
end
sassify(input) click to toggle source

Convert a Sass string into CSS output.

input - The Sass String to convert.

Returns the CSS formatted String.

# File lib/jekyll/filters.rb, line 33
def sassify(input)
  site = @context.registers[:site]
  converter = site.getConverterImpl(Jekyll::Converters::Sass)
  converter.convert(input)
end
scssify(input) click to toggle source

Convert a Scss string into CSS output.

input - The Scss String to convert.

Returns the CSS formatted String.

# File lib/jekyll/filters.rb, line 44
def scssify(input)
  site = @context.registers[:site]
  converter = site.getConverterImpl(Jekyll::Converters::Scss)
  converter.convert(input)
end
shift(array, input = 1) click to toggle source
# File lib/jekyll/filters.rb, line 277
def shift(array, input = 1)
  return array unless array.is_a?(Array)
  new_ary = array.dup
  new_ary.shift(input.to_i || 1)
  new_ary
end
slugify(input) click to toggle source

Slugify a filename or title.

input - The filename or title to slugify.

Returns the given filename or title as a lowercase String, with every sequence of spaces and non-alphanumeric characters replaced with a hyphen.

# File lib/jekyll/filters.rb, line 57
def slugify(input)
  Utils.slugify(input)
end
sort(input, property = nil, nils = "first") click to toggle source

Sort an array of objects

input - the object array property - property within each object to filter by nils ('first' | 'last') - nils appear before or after non-nil values

Returns the filtered array of objects

# File lib/jekyll/filters.rb, line 234
def sort(input, property = nil, nils = "first")
  if property.nil?
    input.sort
  else
    case
    when nils == "first"
      order = - 1
    when nils == "last"
      order = + 1
    else
      raise ArgumentError.new("Invalid nils order: " +
        "'#{nils}' is not a valid nils order. It must be 'first' or 'last'.")
    end

    input.sort { |apple, orange|
      apple_property = item_property(apple, property)
      orange_property = item_property(orange, property)

      if !apple_property.nil? && orange_property.nil?
        - order
      elsif apple_property.nil? && !orange_property.nil?
        + order
      else
        apple_property <=> orange_property
      end
    }
  end
end
textilize(input) click to toggle source

Convert a Textile string into HTML output.

input - The Textile String to convert.

Returns the HTML formatted String.

# File lib/jekyll/filters.rb, line 11
def textilize(input)
  site = @context.registers[:site]
  converter = site.getConverterImpl(Jekyll::Converters::Textile)
  converter.convert(input)
end
unshift(array, input) click to toggle source
# File lib/jekyll/filters.rb, line 284
def unshift(array, input)
  return array unless array.is_a?(Array)
  new_ary = array.dup
  new_ary.unshift(input)
  new_ary
end
uri_escape(input) click to toggle source

URI escape a string.

input - The String to escape.

Examples

uri_escape('foo, bar \baz?')
# => "foo,%20bar%20%5Cbaz?"

Returns the escaped String.

# File lib/jekyll/filters.rb, line 147
def uri_escape(input)
  URI.escape(input)
end
where(input, property, value) click to toggle source

Filter an array of objects

input - the object array property - property within each object to filter by value - desired value

Returns the filtered array of objects

# File lib/jekyll/filters.rb, line 221
def where(input, property, value)
  return input unless input.is_a?(Enumerable)
  input = input.values if input.is_a?(Hash)
  input.select { |object| item_property(object, property) == value }
end
xml_escape(input) click to toggle source

XML escape a string for use. Replaces any special characters with appropriate HTML entity replacements.

input - The String to escape.

Examples

xml_escape('foo "bar" <baz>')
# => "foo &quot;bar&quot; &lt;baz&gt;"

Returns the escaped String.

# File lib/jekyll/filters.rb, line 118
def xml_escape(input)
  CGI.escapeHTML(input.to_s)
end

Private Instance Methods

as_liquid(item) click to toggle source
# File lib/jekyll/filters.rb, line 329
def as_liquid(item)
  case item
  when Hash
    pairs = item.map { |k, v| as_liquid([k, v]) }
    Hash[pairs]
  when Array
    item.map{ |i| as_liquid(i) }
  else
    if item.respond_to?(:to_liquid)
      liquidated = item.to_liquid
      # prevent infinite recursion for simple types (which return `self`)
      if liquidated == item
        item
      else
        as_liquid(liquidated)
      end
    else
      item
    end
  end
end
groupable?(element) click to toggle source
# File lib/jekyll/filters.rb, line 315
def groupable?(element)
  element.respond_to?(:group_by)
end
item_property(item, property) click to toggle source
# File lib/jekyll/filters.rb, line 319
def item_property(item, property)
  if item.respond_to?(:to_liquid)
    item.to_liquid[property.to_s]
  elsif item.respond_to?(:data)
    item.data[property.to_s]
  else
    item[property.to_s]
  end
end
time(input) click to toggle source
# File lib/jekyll/filters.rb, line 301
def time(input)
  case input
  when Time
    input
  when String
    Time.parse(input) rescue Time.at(input.to_i)
  when Numeric
    Time.at(input)
  else
    Jekyll.logger.error "Invalid Date:", "'#{input}' is not a valid datetime."
    exit(1)
  end
end