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

Ajax

开发平台:

Others

  1. class Typo
  2.   class Textfilter
  3.     class Htmlfilter < TextFilterPlugin
  4.       plugin_display_name "HTML Filter"
  5.       plugin_description 'Strip HTML tags'
  6.       def self.filtertext(blog,content,text,params)
  7.         text.to_s.gsub( "<", "&lt;" ).gsub( ">", "&gt;" )
  8.       end
  9.     end
  10.   end
  11. end