Sha256: 2656c612ee5e956f2ae4848800aa3e32da48c19bc6a5cdd860489903b32b1efe
Contents?: true
Size: 397 Bytes
Versions: 15
Compression:
Stored size: 397 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
15 entries across 15 versions & 1 rubygems