From 4948b5a3b370647bf0a2cb00a16906182c20bab7 Mon Sep 17 00:00:00 2001 From: Mike Linksvayer Date: Fri, 11 Mar 2016 11:09:03 -0800 Subject: [PATCH] change smartify doc from copy/paste of mardownify doc --- lib/jekyll/filters.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/jekyll/filters.rb b/lib/jekyll/filters.rb index d318977f..183c9c58 100644 --- a/lib/jekyll/filters.rb +++ b/lib/jekyll/filters.rb @@ -15,11 +15,11 @@ module Jekyll converter.convert(input) end - # Convert a Markdown string into HTML output. + # Convert quotes into smart quotes. # - # input - The Markdown String to convert. + # input - The String to convert. # - # Returns the HTML formatted String. + # Returns the smart-quotified String. def smartify(input) site = @context.registers[:site] converter = site.find_converter_instance(Jekyll::Converters::SmartyPants)