我正试图用红地毯渲染这样的表
| header 1 | header 2 |
| -------- | -------- |
| cell 1 | cell 2 |
| cell 3 | cell 4 |
但它不起作用。
可以用红地毯渲染桌子吗?
是的,您可以呈现这样的表,但必须启用: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>
表格式的公认答案非常好。尝试将其添加为注释会丢失格式。然而,把它作为一个答案也有点可疑。
不管怎样。。。这是对关于在haml中使用markdown表选项(在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)