typo_textfilter_htmlfilter.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:
Ajax
开发平台:
Others
- class Typo
- class Textfilter
- class Htmlfilter < TextFilterPlugin
- plugin_display_name "HTML Filter"
- plugin_description 'Strip HTML tags'
- def self.filtertext(blog,content,text,params)
- text.to_s.gsub( "<", "<" ).gsub( ">", ">" )
- end
- end
- end
- end