1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
# table no pipes
Header 1 | Header 2
-------- | --------
Cell 1 | Cell 2
Cell 3 | Cell 4
# tables with leading pipe
| Header 1 | Header 2
| -------- | --------
| Cell 1 | Cell 2
| Cell 3 | Cell 4
# tables with full bars
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
# tables with mixed bars
Header 1 | Header 2
| -------- | --------
Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
# tables with bars and leading spacing
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
*Note:* This fails in GFM but works with PHP-Markdown.
# table with cuddled following content
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
after
*Note:* This passes GFM, but fails in PHP-Markdown.
# FAIL: table with cuddled leading content
before
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
# single column single leading bar
| Header 1
| --------
| Cell 1
| Cell 3
# single column single trailing bar
Header 1 |
-------- |
Cell 1 |
Cell 3 |
# single column full bars
| Header 1 |
| -------- |
| Cell 1 |
| Cell 3 |
# narrow col 1
| H |
| - |
| 1 |
| 2 |
*Note:* This works in PHP-Markdown, fails in GFM.
# narrow col 2
| He |
| -- |
| 1 |
| 2 |
*Note:* This works in PHP-Markdown, fails in GFM.
# narrow col 3
| He |
| --- |
| 1 |
| 2 |
*Note:* Works in both PHP-Markdown and GFM.
# FAIL: no dash
| He |
| :: |
| 1 |
| 2 |
*Note*: This fails in GFM and *sort of* works in PHP-Markdown, where it
sets to align=center. I'm going to make this *fail* in markdown2.py, i.e.
the rule is it must have at least a single dash in there.
# table with markup in cells
| Header 1 | *Header* 2 |
| -------- | -------- |
| `Cell 1` | [Cell 2](http://example.com) link |
| Cell 3 | **Cell 4** |
# table in blockquote
> | One | Two | Three |
> | --- | --- | --- |
> |grinch|stole|xmas|
> |green|**eggs**|ham|
>
> -- Dr. Seuss
# table with blank cells
| Header 1 | |
| -------- | -------- |
| Cell 1 | |
| | Cell 4 |
# table in blockquote with empty cells
> | | Two | Three |
> | --- | --- | --- |
> |grinch|stole||
> |green|**eggs**|ham|
>
> -- Dr. Seuss
# escaping of pipes
| A | \| | C \| C |
|--- |--- | ------ |
|\|\|| BB | C |
|