module Rabbit::Format::ConvenienceTextFormatter

Public Instance Methods

format(text) click to toggle source
# File lib/rabbit/formatter.rb, line 121
def format(text)
  tagged_text(text, name, {})
end
html_format(text) click to toggle source
# File lib/rabbit/formatter.rb, line 125
def html_format(text)
  tagged_text(text, name, {})
end
html_formatter?() click to toggle source
# File lib/rabbit/formatter.rb, line 117
def html_formatter?
  true
end
text_formatter?() click to toggle source
# File lib/rabbit/formatter.rb, line 113
def text_formatter?
  true
end