kramdown-asciidoc
kramdown-asciidoc copied to clipboard
Rendering raw html in table cell
The following list within a table cell
| Title | Description |
|---------|-------------|
| Foo | some structured information as <ul><li>two</li><li>items</li></ul> |
renders just fine in GitHub flavoured markdown.
| Title | Description |
|---|---|
| Foo | some structured information as
|
However, I get the following snippet when running kramdoc.
|===
| Title | Description
| Foo
| some structured information as <ul><li>two</li><li>items</li></ul>
|===
Note: When I use <br/> in a cell it transforms the <br/>-tag as expected. So, I guess that not all HTML tags are supported yet?
| Title | Description |
|---------|-------------|
| Foo | some structured information as <br/><ul><li>two</li><li>items</li></ul> |
becomes
|===
| Title | Description
| Foo
| some structured information as +
<ul><li>two</li><li>items</li></ul>
|===