-
Notifications
You must be signed in to change notification settings - Fork 886
Closed
Labels
someday-maybeApproved low priority request.Approved low priority request.
Description
Inline code in tables can't escape backtics like they can outside of tables.
``Test` | passes``
| Table | Test |
| ----- | ------- |
| Broken | ``Test` | fails`` |
You can see it only accepts a surrounding backtic of 1. Then it splits on the pipe. The rest is lost because the table is only 2 columns wide.
<p><code>Test` | passes</code></p>
<table>
<thead>
<tr>
<th>Table</th>
<th>Test</th>
</tr>
</thead>
<tbody>
<tr>
<td>Broken</td>
<td><code>`Test</code></td>
</tr>
</tbody>
</table>
I do have intentions of looking into the reason why and providing a fix when I get time.
Metadata
Metadata
Assignees
Labels
someday-maybeApproved low priority request.Approved low priority request.