class MarkdownUI::Renderer

Protected Instance Methods

html() { || ... } click to toggle source
# File lib/markdown-ui.rb, line 27
def html
  if block_given?
    HTMLFormatter.new(yield).to_html
  end
end