Class: Irwi::Formatters::BlueCloth

Inherits:
Object
  • Object
show all
Defined in:
lib/irwi/formatters/blue_cloth.rb

Instance Method Summary collapse

Constructor Details

#initializeBlueCloth

Returns a new instance of BlueCloth.



3
4
5
# File 'lib/irwi/formatters/blue_cloth.rb', line 3

def initialize
  require 'bluecloth'
end

Instance Method Details

#format(text) ⇒ Object



7
8
9
# File 'lib/irwi/formatters/blue_cloth.rb', line 7

def format( text )
  BlueCloth.new( text ).to_html
end