diff options
author | Mustafa Haddara <mhaddara@venasolutions.com> | 2015-10-22 10:33:54 -0400 |
---|---|---|
committer | Mustafa Haddara <mustafaayhaddara@yahoo.com> | 2015-10-24 23:40:30 -0400 |
commit | fb65ed196df567ab71d63029e7ab36002b12112e (patch) | |
tree | 22e7486cdf9a1744bd3ef97db907bcb031fc015a /tests/extensions/extra/tables.html | |
parent | f3a68faffae9fd728c689b4732c1d3397d1d3faa (diff) | |
download | markdown-fb65ed196df567ab71d63029e7ab36002b12112e.tar.gz markdown-fb65ed196df567ab71d63029e7ab36002b12112e.tar.bz2 markdown-fb65ed196df567ab71d63029e7ab36002b12112e.zip |
Fixed handling of table cell split
Diffstat (limited to 'tests/extensions/extra/tables.html')
-rw-r--r-- | tests/extensions/extra/tables.html | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/tests/extensions/extra/tables.html b/tests/extensions/extra/tables.html index 85a998d..91337e5 100644 --- a/tests/extensions/extra/tables.html +++ b/tests/extensions/extra/tables.html @@ -168,4 +168,71 @@ Content Cell | Content Cell </tr> </thead> <tbody></tbody> +</table> +<p>More inline code block tests</p> +<table> +<thead> +<tr> +<th>Column 1</th> +<th>Column 2</th> +<th>Column 3</th> +</tr> +</thead> +<tbody> +<tr> +<td>word 1</td> +<td>word 2</td> +<td>word 3</td> +</tr> +<tr> +<td>word 1</td> +<td><code>word 2</code></td> +<td>word 3</td> +</tr> +<tr> +<td>word 1</td> +<td>`word 2</td> +<td>word 3</td> +</tr> +<tr> +<td>word 1</td> +<td>`word 2</td> +<td>word 3</td> +</tr> +<tr> +<td>word 1</td> +<td><code>word |2</code></td> +<td>word 3</td> +</tr> +<tr> +<td>words</td> +<td><code>some | code</code></td> +<td>more words</td> +</tr> +<tr> +<td>words</td> +<td><code>some | code</code></td> +<td>more words</td> +</tr> +<tr> +<td>words</td> +<td><code>some | code</code></td> +<td>more words</td> +</tr> +<tr> +<td>words</td> +<td><code>some ` | ` code</code></td> +<td>more words</td> +</tr> +<tr> +<td>words</td> +<td><code>some ` | ` code</code></td> +<td>more words</td> +</tr> +<tr> +<td>words</td> +<td><code>some ` | ` code</code></td> +<td>more words</td> +</tr> +</tbody> </table>
\ No newline at end of file |