diff options
author | Adam Wood <adam.michael.wood@gmail.com> | 2016-10-26 10:17:38 -0700 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2016-10-26 13:17:38 -0400 |
commit | 0244474b2dbf15986891a8d700c7bb121dc6f55f (patch) | |
tree | 426f87e0814a05bb3989b2d8c08c5216b2dda84f /tests/extensions/extra/tables.html | |
parent | 251183ef2817dcf09f502bea15423f6e81c5e228 (diff) | |
download | markdown-0244474b2dbf15986891a8d700c7bb121dc6f55f.tar.gz markdown-0244474b2dbf15986891a8d700c7bb121dc6f55f.tar.bz2 markdown-0244474b2dbf15986891a8d700c7bb121dc6f55f.zip |
lists are not tables - fixes #478 (#507)
Diffstat (limited to 'tests/extensions/extra/tables.html')
-rw-r--r-- | tests/extensions/extra/tables.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/extensions/extra/tables.html b/tests/extensions/extra/tables.html index b5c08be..85d9940 100644 --- a/tests/extensions/extra/tables.html +++ b/tests/extensions/extra/tables.html @@ -250,4 +250,9 @@ Content Cell | Content Cell <td>(<code>bar</code>) and <code>baz</code>.</td> </tr> </tbody> -</table>
\ No newline at end of file +</table> +<p>Lists are not tables</p> +<ul> +<li>this | should | not</li> +<li>be | a | table</li> +</ul>
\ No newline at end of file |