showdown/test/features/tables/#465.code-spans-with-pipes-break-table.html
Estevao Soares dos Santos 0c933a01f9 fix(tables): pipe character in code spans no longer breaks table
A code span with a pipe character no longer incorrectly breaks the cell table.

Closes #465
2017-11-23 05:39:53 +00:00

15 lines
260 B
HTML

<table>
<thead>
<tr>
<th>PowerShell command</th>
<th>Example</th>
</tr>
</thead>
<tbody>
<tr>
<td>Get-Service</td>
<td><code>Get-Service | Stop-Service -WhatIf</code></td>
</tr>
</tbody>
</table>