diff options
Diffstat (limited to 'tests/extensions/extra')
-rw-r--r-- | tests/extensions/extra/tables.html | 31 | ||||
-rw-r--r-- | tests/extensions/extra/tables.txt | 10 |
2 files changed, 40 insertions, 1 deletions
diff --git a/tests/extensions/extra/tables.html b/tests/extensions/extra/tables.html index 85d9940..a0b1f71 100644 --- a/tests/extensions/extra/tables.html +++ b/tests/extensions/extra/tables.html @@ -255,4 +255,33 @@ Content Cell | Content Cell <ul> <li>this | should | not</li> <li>be | a | table</li> -</ul>
\ No newline at end of file +</ul> +<p>Add tests for issue #449</p> +<table> +<thead> +<tr> +<th>Odd backticks</th> +<th>Even backticks</th> +</tr> +</thead> +<tbody> +<tr> +<td><code>[!\"\#$%&'()*+,\-./:;<=>?@\[\\\]^_`{|}~]</code></td> +<td><code>[!\"\#$%&'()*+,\-./:;<=>?@\[\\\]^`_`{|}~]</code></td> +</tr> +</tbody> +</table> +<table> +<thead> +<tr> +<th>Escapes</th> +<th>More Escapes</th> +</tr> +</thead> +<tbody> +<tr> +<td><code>`\</code></td> +<td><code>\</code></td> +</tr> +</tbody> +</table>
\ No newline at end of file diff --git a/tests/extensions/extra/tables.txt b/tests/extensions/extra/tables.txt index c843918..a9677ba 100644 --- a/tests/extensions/extra/tables.txt +++ b/tests/extensions/extra/tables.txt @@ -80,3 +80,13 @@ Lists are not tables - this | should | not - be | a | table + +Add tests for issue #449 + +Odd backticks | Even backticks +------------ | ------------- +``[!\"\#$%&'()*+,\-./:;<=>?@\[\\\]^_`{|}~]`` | ``[!\"\#$%&'()*+,\-./:;<=>?@\[\\\]^`_`{|}~]`` + +Escapes | More Escapes +------- | ------ +`` `\`` | `\` |