module ERB::Util

Public Class Methods

t( s )
Alias for: textilize
textilize( s ) click to toggle source

A utility method for transforming Textile in s to HTML.

require "erb"
include ERB::Util

puts textilize("Isn't ERB *great*?")

Generates

<p>Isn&#8217;t <span class="caps">ERB</span> <strong>great</strong>?</p>
# File lib/redcloth/erb_extension.rb, line 16
def textilize( s )
  if s && s.respond_to?(:to_s)
    RedCloth.new( s.to_s ).to_html
  end
end
Also aliased as: t