I have a problem with inline HTML in a github page, where inline HTML bullet lists are escaped in tables. The rows of the following table:
| Name | Value |
|------|-----------------------|
| one | <i>foo</i> |
| two | <ul><li>bar</li></ul> |
is rendered as:
<tr>
<td>one</td>
<td><i>foo</i></td>
</tr>
<tr>
<td>two</td>
<td><ul><li>bar</li></ul></td>
</tr>
The bullet list is rendered as expected by the GitHub UI, but in gh-pages, the <ul> is escaped. Why?