typo_textfilter_textile.rb
来自「用ruby on rails写的一个博客程序,还不错..ruby on rail」· RB 代码 · 共 18 行
RB
18 行
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 endend
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?