class MarkdownEngine

Public Class Methods

new() click to toggle source
# File lib/markd/engines.rb, line 3
def initialize
  require 'bluecloth'
end

Public Instance Methods

to_html(src) click to toggle source
# File lib/markd/engines.rb, line 7
def to_html(src)
  BlueCloth.new(src).to_html
end