module Jekyll::Filters

def slugify(input, mode=nil)

See Utils.slugify for more detail.
Returns the given filename or title as a lowercase URL String.

mode - how string is slugified
input - The filename or title to slugify.

Slugify a filename or title.
def slugify(input, mode=nil)
  Utils.slugify(input, :mode => mode)
end