...

Text file src/github.com/yuin/goldmark/extension/_test/table.txt

Documentation: github.com/yuin/goldmark/extension/_test

     11
     2//- - - - - - - - -//
     3| foo | bar |
     4| --- | --- |
     5| baz | bim |
     6//- - - - - - - - -//
     7<table>
     8<thead>
     9<tr>
    10<th>foo</th>
    11<th>bar</th>
    12</tr>
    13</thead>
    14<tbody>
    15<tr>
    16<td>baz</td>
    17<td>bim</td>
    18</tr>
    19</tbody>
    20</table>
    21//= = = = = = = = = = = = = = = = = = = = = = = =//
    22
    23
    24
    252
    26//- - - - - - - - -//
    27| abc | defghi |
    28:-: | -----------:
    29bar | baz
    30//- - - - - - - - -//
    31<table>
    32<thead>
    33<tr>
    34<th align="center">abc</th>
    35<th align="right">defghi</th>
    36</tr>
    37</thead>
    38<tbody>
    39<tr>
    40<td align="center">bar</td>
    41<td align="right">baz</td>
    42</tr>
    43</tbody>
    44</table>
    45//= = = = = = = = = = = = = = = = = = = = = = = =//
    46
    47
    48
    493
    50//- - - - - - - - -//
    51| f\|oo  |
    52| ------ |
    53| b `\|` az |
    54| b **\|** im |
    55//- - - - - - - - -//
    56<table>
    57<thead>
    58<tr>
    59<th>f|oo</th>
    60</tr>
    61</thead>
    62<tbody>
    63<tr>
    64<td>b <code>|</code> az</td>
    65</tr>
    66<tr>
    67<td>b <strong>|</strong> im</td>
    68</tr>
    69</tbody>
    70</table>
    71//= = = = = = = = = = = = = = = = = = = = = = = =//
    72
    73
    74
    754
    76//- - - - - - - - -//
    77| abc | def |
    78| --- | --- |
    79| bar | baz |
    80> bar
    81//- - - - - - - - -//
    82<table>
    83<thead>
    84<tr>
    85<th>abc</th>
    86<th>def</th>
    87</tr>
    88</thead>
    89<tbody>
    90<tr>
    91<td>bar</td>
    92<td>baz</td>
    93</tr>
    94</tbody>
    95</table>
    96<blockquote>
    97<p>bar</p>
    98</blockquote>
    99//= = = = = = = = = = = = = = = = = = = = = = = =//
   100
   101
   102
   1035
   104//- - - - - - - - -//
   105| abc | def |
   106| --- | --- |
   107| bar | baz |
   108bar
   109
   110bar
   111//- - - - - - - - -//
   112<table>
   113<thead>
   114<tr>
   115<th>abc</th>
   116<th>def</th>
   117</tr>
   118</thead>
   119<tbody>
   120<tr>
   121<td>bar</td>
   122<td>baz</td>
   123</tr>
   124<tr>
   125<td>bar</td>
   126<td></td>
   127</tr>
   128</tbody>
   129</table>
   130<p>bar</p>
   131//= = = = = = = = = = = = = = = = = = = = = = = =//
   132
   133
   134
   1356
   136//- - - - - - - - -//
   137| abc | def |
   138| --- |
   139| bar |
   140//- - - - - - - - -//
   141<p>| abc | def |
   142| --- |
   143| bar |</p>
   144//= = = = = = = = = = = = = = = = = = = = = = = =//
   145
   146
   147
   1487
   149//- - - - - - - - -//
   150| abc | def |
   151| --- | --- |
   152| bar |
   153| bar | baz | boo |
   154//- - - - - - - - -//
   155<table>
   156<thead>
   157<tr>
   158<th>abc</th>
   159<th>def</th>
   160</tr>
   161</thead>
   162<tbody>
   163<tr>
   164<td>bar</td>
   165<td></td>
   166</tr>
   167<tr>
   168<td>bar</td>
   169<td>baz</td>
   170</tr>
   171</tbody>
   172</table>
   173//= = = = = = = = = = = = = = = = = = = = = = = =//
   174
   175
   176
   1778
   178//- - - - - - - - -//
   179| abc | def |
   180| --- | --- |
   181//- - - - - - - - -//
   182<table>
   183<thead>
   184<tr>
   185<th>abc</th>
   186<th>def</th>
   187</tr>
   188</thead>
   189</table>
   190//= = = = = = = = = = = = = = = = = = = = = = = =//
   191
   192
   193
   1949
   195//- - - - - - - - -//
   196Foo|Bar
   197---|---
   198`Yoyo`|Dyne
   199//- - - - - - - - -//
   200<table>
   201<thead>
   202<tr>
   203<th>Foo</th>
   204<th>Bar</th>
   205</tr>
   206</thead>
   207<tbody>
   208<tr>
   209<td><code>Yoyo</code></td>
   210<td>Dyne</td>
   211</tr>
   212</tbody>
   213</table>
   214//= = = = = = = = = = = = = = = = = = = = = = = =//
   215
   216
   21710
   218//- - - - - - - - -//
   219foo|bar
   220---|---
   221`\` | second column
   222//- - - - - - - - -//
   223<table>
   224<thead>
   225<tr>
   226<th>foo</th>
   227<th>bar</th>
   228</tr>
   229</thead>
   230<tbody>
   231<tr>
   232<td><code>\</code></td>
   233<td>second column</td>
   234</tr>
   235</tbody>
   236</table>
   237//= = = = = = = = = = = = = = = = = = = = = = = =//
   238
   239
   24011: Tables can interrupt paragraph
   241//- - - - - - - - -//
   242**xxx**
   243| hello |   hi  |
   244| :----: | :----:|
   245//- - - - - - - - -//
   246<p><strong>xxx</strong></p>
   247<table>
   248<thead>
   249<tr>
   250<th align="center">hello</th>
   251<th align="center">hi</th>
   252</tr>
   253</thead>
   254</table>
   255//= = = = = = = = = = = = = = = = = = = = = = = =//
   256
   25712: A delimiter can not start with more than 3 spaces
   258//- - - - - - - - -//
   259Foo
   260    ---
   261//- - - - - - - - -//
   262<p>Foo
   263---</p>
   264//= = = = = = = = = = = = = = = = = = = = = = = =//
   265
   26613: A delimiter can not start with more than 3 spaces(w/ tabs)
   267    OPTIONS: {"enableEscape": true}
   268//- - - - - - - - -//
   269- aaa
   270
   271  Foo
   272\t\t---
   273//- - - - - - - - -//
   274<ul>
   275<li>
   276<p>aaa</p>
   277<p>Foo
   278---</p>
   279</li>
   280</ul>
   281//= = = = = = = = = = = = = = = = = = = = = = = =//
   282

View as plain text