class TextileEngine

Public Class Methods

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

Public Instance Methods

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