typo_textfilter_textile.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. class Typo
  2.   class Textfilter
  3.     class Textile < TextFilterPlugin::Markup
  4.       plugin_display_name "Textile"
  5.       plugin_description 'Textile markup language'
  6.       def self.help_text
  7.         %{
  8. See [_why's Textile reference](http://hobix.com/textile/).
  9. }
  10.       end
  11.   
  12.       def self.filtertext(blog,content,text,params)
  13.         RedCloth.new(text).to_html(:textile)
  14.       end
  15.     end
  16.   end
  17. end