Merge pull request #4653 from mlinksva/patch-2

Merge pull request 4653
This commit is contained in:
jekyllbot 2016-03-11 13:35:22 -06:00
commit 2ea3bc53d3
1 changed files with 3 additions and 3 deletions

View File

@ -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)