You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Input | Expected | Actual || ----------- | ---------------- | --------- || One | Two | Three || Header | Row | Example || :------: | ---: | :------ || Foo | Bar | Baz |
I want to render it to a doc and then to a HTML string using the CommonMarker::HtmlRenderer.new.render, but the result gets lost the <tbody> tag of the second table.
In my real case I use my custom renderer inherited from the CommonMarker::HtmlRenderer, but it doesn't matter because the bug is reproducible with the gem's methods.
By the way, if I run either doc.to_html or CommonMarker.render_html(content, :DEFAULT, [:autolink, :table, :tagfilter]), the second <tbody> is added just as expected.
commonmarker-0.17.4
ruby 2.3.5p376
The text was updated successfully, but these errors were encountered:
I have such a simple markdown with two tables:
I want to render it to a doc and then to a HTML string using the
CommonMarker::HtmlRenderer.new.render
, but the result gets lost the<tbody>
tag of the second table.In my real case I use my custom renderer inherited from the
CommonMarker::HtmlRenderer
, but it doesn't matter because the bug is reproducible with the gem's methods.By the way, if I run either
doc.to_html
orCommonMarker.render_html(content, :DEFAULT, [:autolink, :table, :tagfilter])
, the second<tbody>
is added just as expected.commonmarker-0.17.4
ruby 2.3.5p376
The text was updated successfully, but these errors were encountered: