module Jekyll::Filters

def smartify(input)

Returns the smart-quotified String.

input - The String to convert.

Convert quotes into smart quotes.
def smartify(input)
  @context.registers[:site].find_converter_instance(
    Jekyll::Converters::SmartyPants
  ).convert(input.to_s)
end