`
xu_wccq
  • 浏览: 130908 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

redcloth 安装至ruby on rails 项目中

    博客分类:
  • ruby
阅读更多
1.  拷贝redcloth.rb到ror的lib目录内。

2.  拷贝jstoolbar相关的javascript 、stylesheet、images到对应的public目录里面。另外把压缩包里的help目录完整地拷贝到public目录下,其是redcloth语法的使用帮助.

3.  在application的helper方法中添加如下两个方法:
require 'redcloth'       #在application_helper 文件头引入redcloth

       用于页中生成相应textarea框的jstoolbar方法。
  def wikitoolbar_for(field_id)
    help_link = "文本格式化" + ': ' +
      link_to("帮助", compute_public_path('wiki_syntax', 'help', 'html'),
                              :onclick => "window.open(\"#{ compute_public_path('wiki_syntax', 'help', 'html') }\", \"\", \"resizable=yes, location=no, 
width=300, height=640, menubar=no, status=no, scrollbars=yes\"); return false;")

    javascript_include_tag('jstoolbar/jstoolbar') +
      javascript_include_tag("jstoolbar/lang/jstoolbar-zh") +
      javascript_tag("var toolbar = new jsToolBar($('#{field_id}')); toolbar.setHelpLink('#{help_link}'); toolbar.draw();")
  end
  
     在view中格式化要显示的文本.
  def textilizable(text)
    RedCloth.new(h(text)).to_html
  end



4. 最后,在你的全局stylesheet里面引入jstoolbar.css文件,完成安装。
  • redcloth_setup_to_ror_app.tar.gz (29.4 KB)
  • 描述: redcloth使用,其包括了redcloth.rb以及页面显示用到的js,css,image.以及语法帮助。
  • 下载次数: 49
分享到:
评论

相关推荐

    What is RedCloth

    在Ruby中,使用RedCloth非常简单。首先,你需要通过RubyGems安装RedCloth库: ```bash gem install redcloth ``` 然后在你的代码中引入RedCloth并处理Textile文本: ```ruby require 'redcloth' text = "h1. 我的...

    redcloth, RedCloth是一个用于将 Textile 转换为HTML的ruby 库.zip

    redcloth, RedCloth是一个用于将 Textile 转换为HTML的ruby 库 RedCloth - ruby的Textile 解析器主页redcloth.org维护者Joshua Siler github.com/joshuasiler作者Garber版权

    jekyll gem

    在描述中提到的`ruby -v`命令是用来检查当前系统中安装的Ruby版本,这里的版本是`ruby 2.1.4p265 (2014-10-27 revision 48166) [i386-mingw32]`,这表明系统中运行的是32位的Ruby解释器。 接下来我们详细分析压缩包...

    rubygems-1.6.2.tgz

    在Redmine项目管理系统的搭建过程中,RubyGems扮演了关键角色,因为它允许用户方便地安装和管理所需的Ruby库和依赖项。 RubyGems的工作原理是将代码打包成称为“gem”的自包含单元。每个gem都包含了库的代码、元...

    YAML.rb: YAML for Ruby-开源

    在实际开发中,`YAML.rb`可以与其他开源项目结合,比如Ruby on Rails框架,它大量使用YAML来配置应用程序和数据库。开发者可以利用`YAML.rb`处理路由设置、数据库迁移、本地化文件等。同时,YAML也是测试框架如RSpec...

    redcloth-formatters-plain:与RedCloth中包含HTML和Latex格式化程序类似,这一代码使您可以将Textile转换为纯文本,而无需使用Textile语法

    RedCloth :: Formatters :: Plain 与RedCloth中包含的HTML和Latex格式化程序类似,此格式允许您将Textile转换为纯文本,而无需使用Textile语法。依存关系这个插件只需要 。例子RedCloth.new("p. this is *simple* _...

    diy-broadcast:自己动手做广播电视台广播项目

    该项目需要Ruby2.0和nodejs。 如果未安装ruby环境,请进行以下设置: apt-get install ruby2.0 ruby2.0-dev gem bundler zlib1g-dev nodejs 将/ usr / bin / ruby​​和/ usr / bin / gem可执行文件重新链接到2.0...

    rdiscount:打折(对于Ruby)John Gruber的Markdown的实现

    Ruby降价促销处理器 Discount是C语言中John Gruber的Markdown标记语言的实现。它实现描述的所有语言,并通过了。 代码: git clone git://github.com/davidfstr/rdiscount.git 主页: : DOCS: : 错误: : ...

    JavaCloth-开源

    JavaCloth是一个开源项目,它的出现是为了在Java环境中提供与RedCloth和Markdown类似的文本解析功能。RedCloth是Textile格式的一种实现,而Markdown则是一种轻量级的标记语言,两者都广泛用于将易读的文本格式转换为...

    wiki引擎git-wiki.zip

    git-wiki 是使用 Git 做为数据存储的 wiki 引擎,使用 Ruby 开发。要求环境支持: rubygems sinatra grit redcloth rubypants 标签:gitwiki

    webgen-website:Webgen网站的来源

    您需要安装 ,所需的库以及扩展包 , 和 : $ gem install webgen $ gem install archive-tar-minitar builder coderay erubis haml $ gem install maruku rdiscount rdoc RedCloth sass $ gem install webgen-zurb...

Global site tag (gtag.js) - Google Analytics