module Markdoc
Constants
- VERSION
Public Class Methods
render(doc)
click to toggle source
# File lib/markdoc.rb, line 9 def self.render(doc) markdown = Redcarpet::Markdown.new(Renderer, fenced_code_blocks: true) markdown.render(doc) end