Sha256: 5c3ad079b479023ae33230f6a0bcb50c8d5965482893ec3150e2cecb890ca82f
Contents?: true
Size: 687 Bytes
Versions: 1
Compression:
Stored size: 687 Bytes
Contents
require 'malt/engines/abstract' module Malt::Engines # class RedCloth < Abstract default :tt, :textile # Convert textile text to html. # # params: # # :format => Symbol of the format to render [:html] # def render(params={}) case params[:format] when :html, nil intermediate(params).to_html else super(params) end end # def intermediate(params={}) text = params[:text] ::RedCloth.new(text) end private # Load redcloth library if not already loaded. def initialize_engine return if defined? ::RedCloth require_library 'redcloth' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
malt-0.1.0 | lib/malt/engines/redcloth.rb |