虾不支持TinyMce格式化

时间:2015-10-08 07:14:51

标签: jquery ruby-on-rails ruby tinymce prawn

enter image description here enter image description here

我在rails应用程序中使用TinyMce Rich Text Editor并尝试使用praw生成pdf,然后虾不支持文本格式。

假设我使用文本编辑器创建描述为***

- 这是简单的说明

当我尝试使用prawn在pdf中显示此描述时,它显示为简单的文本,如 -

这是简单的描述。

有没有办法将描述显示为格式化。

           @pdf=pdf
           pdf.text "Test"

            pdf.move_down(30)
            rr = Model.find(106)
            items = [[rr.name,strip_tags(rr.definition)]]


             pdf.table(items) do |table|
                 table.rows(1..3).width = 72
             end

提前致谢

0 个答案:

没有答案