17

我正在尝试使用 Redcarpet 渲染这样的表格

| header 1 | header 2 |
| -------- | -------- |
| cell 1   | cell 2   |
| cell 3   | cell 4   |

但它不起作用。

是否可以使用 Redcarpet 渲染表格?

4

2 回答 2

33

是的,您可以呈现这样的表格,但您必须启用该:tables选项。

require 'redcarpet'
markdown = Redcarpet::Markdown.new(Redcarpet::Render::HTML, :tables => true)

text = <<END
| header 1 | header 2 |
| -------- | -------- |
| cell 1   | cell 2   |
| cell 3   | cell 4   |
END

puts markdown.render(text)

输出:

<table><thead>
<tr>
<th>header 1</th>
<th>header 2</th>
</tr>
</thead><tbody>
<tr>
<td>cell 1</td>
<td>cell 2</td>
</tr>
<tr>
<td>cell 3</td>
<td>cell 4</td>
</tr>
</tbody></table>
于 2012-11-13T14:25:52.987 回答
2

表格格式的公认答案很棒。尝试将其添加为评论会丢失格式。然而,将其添加为答案也有些问题。

无论如何...这是对有关使用带有 haml 的降价表选项的问题的回应(在 Rails 的上下文中)。

application_helper.rb

  def markdown(content)
    return '' unless content.present?
    @options ||= {
        autolink: true,
        space_after_headers: true,
        fenced_code_blocks: true,
        underline: true,
        highlight: true,
        footnotes: true,
        tables: true,
        link_attributes: {rel: 'nofollow', target: "_blank"}
    }
    @markdown ||= Redcarpet::Markdown.new(Redcarpet::Render::HTML, @options)
    @markdown.render(content).html_safe
  end

然后在一个视图中(views/product_lines/show.html.haml):

= markdown(product_line.description)
于 2015-07-04T16:08:07.580 回答