Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect Rendering of Table With Inline Code Cells #303

Closed
mjbvz opened this issue Nov 28, 2016 · 1 comment
Closed

Incorrect Rendering of Table With Inline Code Cells #303

mjbvz opened this issue Nov 28, 2016 · 1 comment

Comments

@mjbvz
Copy link
Contributor

mjbvz commented Nov 28, 2016

Reported From: microsoft/vscode#16134

Bug
The following markdown table:

# | 1 | 2
--|--|--
x | `\` | `x`

is currently rendered as:

screen shot 2016-11-28 at 11 03 37 am

with html:

<table>
<thead>
<tr>
<th>#</th>
<th>1</th>
<th>2</th>
</tr>
</thead>
<tbody>
<tr>
<td>x</td>
<td><code>\</code> | <code>x</code></td>
<td></td>
</tr>
</tbody>
</table>

Expected
I believe the correct rendering is:

screen shot 2016-11-28 at 11 05 12 am

with html:

<table>
<thead>
<tr>
<th>#</th>
<th>1</th>
<th>2</th>
</tr>
</thead>
<tbody>
<tr>
<td>x</td>
<td><code>\</code></td>
<td><code>x</code></td>
</tr>
</tbody>
</table>
@rlidwka
Copy link
Member

rlidwka commented Nov 30, 2016

Fixed, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants