class GitHub::Markdown

Public Class Methods

render(content) click to toggle source
# File lib/github/markdown.rb, line 27
def self.render(content)
  self.to_html(content, :markdown)
end
render_gfm(content) click to toggle source
# File lib/github/markdown.rb, line 31
def self.render_gfm(content)
  self.to_html(content, :gfm)
end