2

问题:如何在我的应用程序中将我的纺织品生成的 HTML“转换”回纺织品标记?

这是情况。通过在我的“帖子”模型中实现 RedCloth 和作为纺织物,我设法在我的 Rails 3 应用程序中拼凑出一个穷人的博客编辑器。我使用acts-as-textiled 来减轻在我的“帖子”正文中编写内容的痛苦。

它工作得很好。但是,当我编辑帖子时,我会在帖子正文中看到生成的 HTML。我想看到的是原始的纺织品标记。这可能吗?

在此先感谢您的帮助!

这是我的帖子模型:

class Post < ActiveRecord::Base
  has_many :tags
  acts_as_taggable_on :tags
  acts_as_textiled :title, :body
  attr_accessible :tag_list, :tags, :title, :body, :post, :comments
  validates :title, :presence => true
  validates :body, :presence => true
  default_scope :order => 'posts.created_at DESC'

这是我的“显示”方法的帖子视图:

<%= @post.title.html_safe %>
<%= @post.body.html_safe %>
4

1 回答 1

2

试试这个:

html = <<HTML
<h1>This is a heading</h1>
<strong>bold text</strong>
<i>italic</i>
HTML

textile = ClothRed.new(html).to_textile

puts textile

输出:

h1. This is a heading


*bold text*  
__italic__

在你的情况下,我认为你应该这样做:

<%= ClothRed.new(@post.body).to_textile.html_safe %>
# instead of
<%= @post.body.html_safe %>

不过,我不知道这是否被认为是最佳实践。

文档:http ://clothred.rubyforge.org/doc/html/index.html

于 2010-11-30T01:08:40.223 回答