From c70b2c4154d9b6e46f282c1f212c52e9fbfa5a07 Mon Sep 17 00:00:00 2001 From: Isaac Muse Date: Thu, 19 Jan 2017 06:51:06 -0700 Subject: Tables: Improvements (#530) Tables now handle escaped pipes when testing, in table borders, and in the inline content. To achieve properly, a bug had to be fixed related to appending escaped chars to the Markdown class. Now appended chars only appear in the current instance. Lastly the first backtick in a table can be escaped rounding out the last corner case. --- tests/extensions/extra/tables.html | 74 +++++++++++++++++++++++++++++++++++++- 1 file changed, 73 insertions(+), 1 deletion(-) (limited to 'tests/extensions/extra/tables.html') diff --git a/tests/extensions/extra/tables.html b/tests/extensions/extra/tables.html index a0b1f71..b81582c 100644 --- a/tests/extensions/extra/tables.html +++ b/tests/extensions/extra/tables.html @@ -284,4 +284,76 @@ Content Cell | Content Cell \ - \ No newline at end of file + +

Only the first backtick can be escaped

+ + + + + + + + + + + + + +
EscapedBacticks
`\``
+

Test escaped pipes

+ + + + + + + + + + + + + +
Column 1Column 2
| |Pipes are okay in code and escaped. |
+ + + + + + + + + + + + + + + + + +
Column 1Column 2
row1row1 |
row2row2
+

Test header escapes

+ + + + + + + + + + + + + + + + + +
`\ |\ |
row1row1
row2row2
+

Escaped pipes in format row should not be a table

+

| Column1 | Column2 | +| ------- || ------- | +| row1 | row1 | +| row2 | row2 |

\ No newline at end of file -- cgit v1.2.3