# $Id: textile.rb 71 2007-12-13 05:45:53Z tim_pease $ try_require 'redcloth' # Render text via textile using the RedCloth library. Webby::Filters.register :textile do |input| RedCloth.new(input, %w(no_span_caps)).to_html end # EOF