We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04b445a commit 96c19ebCopy full SHA for 96c19eb
app/views/components/markdown/base.rb
@@ -76,6 +76,12 @@ def visit(node)
76
hr
77
in :block_quote
78
blockquote { visit_children(node) }
79
+ in :table
80
+ table { visit_children(node) }
81
+ in :table_row
82
+ tr { visit_children(node) }
83
+ in :table_cell
84
+ td { visit_children(node) }
85
in :html_block
86
html_block(node.to_html(options: @options))
87
in :html_inline # This is a raw HTML inline element, so we skip here in safe mode
0 commit comments