class PublifyApp::Textfilter::Textile

Public Class Methods

filtertext(text) click to toggle source
# File lib/publify_textfilter_textile.rb, line 18
def self.filtertext(text)
  ActiveSupport::Deprecation.warn "Use of Textile is deprecated"
  RedCloth.new(text).to_html(:textile)
end
help_text() click to toggle source
# File lib/publify_textfilter_textile.rb, line 12
      def self.help_text
        %{
See [_why's Textile reference](http://hobix.com/textile/).
}
      end