aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extensions/extra/tables.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extensions/extra/tables.html')
-rw-r--r--tests/extensions/extra/tables.html21
1 files changed, 20 insertions, 1 deletions
diff --git a/tests/extensions/extra/tables.html b/tests/extensions/extra/tables.html
index b81582c..2418c98 100644
--- a/tests/extensions/extra/tables.html
+++ b/tests/extensions/extra/tables.html
@@ -356,4 +356,23 @@ Content Cell | Content Cell
<p>| Column1 | Column2 |
| ------- || ------- |
| row1 | row1 |
-| row2 | row2 |</p> \ No newline at end of file
+| row2 | row2 |</p>
+<p>Test escaped code in Table</p>
+<table>
+<thead>
+<tr>
+<th>Should not be code</th>
+<th>Should be code</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>`Not code`</td>
+<td>\<code>code</code></td>
+</tr>
+<tr>
+<td>\`Not code\`</td>
+<td>\\<code>code</code></td>
+</tr>
+</tbody>
+</table> \ No newline at end of file