Sha256: a611f6c6d125bb0882ceb12d63d65430c53bb56fa5001ce46abe78179d4761ae

Contents?: true

Size: 398 Bytes

Versions: 6

Compression:

Stored size: 398 Bytes

Contents

class Typo
  class Textfilter
    class Textile < TextFilterPlugin::Markup
      plugin_display_name "Textile"
      plugin_description 'Textile markup language'

      def self.help_text
        %{
See [_why's Textile reference](http://hobix.com/textile/).
}
      end
  
      def self.filtertext(blog,content,text,params)
        RedCloth.new(text).to_html(:textile)
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
typo-5.5 vendor/plugins/typo_textfilter_textile/lib/typo_textfilter_textile.rb
typo-5.4.4 vendor/plugins/typo_textfilter_textile/lib/typo_textfilter_textile.rb
typo-5.4.3 vendor/plugins/typo_textfilter_textile/lib/typo_textfilter_textile.rb
typo-5.4.2 vendor/plugins/typo_textfilter_textile/lib/typo_textfilter_textile.rb
typo-5.4.1 vendor/plugins/typo_textfilter_textile/lib/typo_textfilter_textile.rb
typo-5.4 vendor/plugins/typo_textfilter_textile/lib/typo_textfilter_textile.rb