Method: Jekyll::Converters::Markdown#convert

Defined in:
lib/ngage/jekyll/converters/markdown.rb

#convert(content) ⇒ Object

Logic to do the content conversion.

content - String content of file (without front matter).

Returns a String of the converted content.



90
91
92
93
# File 'lib/ngage/jekyll/converters/markdown.rb', line 90

def convert(content)
  setup
  @parser.convert(content)
end