File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ < p > Simple table with head:</ p >
2
+
1
3
< table >
2
4
< thead >
3
5
< tr >
19
21
</ tr >
20
22
</ tbody >
21
23
</ table >
24
+
25
+ < p > Simple table headless:</ p >
26
+
27
+ < table >
28
+ < tbody >
29
+ < tr >
30
+ < td > /foo</ td >
31
+ < td > It matches (200 status response)</ td >
32
+ < td > It doesn't match (404 status response)</ td >
33
+ </ tr >
34
+ < tr >
35
+ < td > /foo/</ td >
36
+ < td > It makes a 301 redirect to /foo/</ td >
37
+ < td > It matches (200 status response)</ td >
38
+ </ tr >
39
+ </ tbody >
40
+ </ table >
41
+
42
+ < p > Grid table:</ p >
43
+
22
44
< table >
23
45
< tbody >
24
46
< tr >
36
58
</ tr >
37
59
</ tbody >
38
60
</ table >
61
+
62
+ < p > Grid table with head:</ p >
63
+
39
64
< table >
40
65
< thead >
41
66
< tr >
55
80
</ tr >
56
81
</ tbody >
57
82
</ table >
83
+
84
+ < p > Grid table with head and multi-line cells:</ p >
85
+
58
86
< table >
59
87
< thead >
60
88
< tr >
Original file line number Diff line number Diff line change
1
+ Simple table with head:
1
2
2
3
========== ======================================== ==========================================
3
4
Route path If the requested URL is /foo If the requested URL is /foo/
@@ -6,6 +7,15 @@ Route path If the requested URL is /foo If the requested URL is /f
6
7
/foo/ It makes a 301 redirect to /foo/ It matches (200 status response)
7
8
========== ======================================== ==========================================
8
9
10
+ Simple table headless:
11
+
12
+ ========== ======================================== ==========================================
13
+ /foo It matches (200 status response) It doesn't match (404 status response)
14
+ /foo/ It makes a 301 redirect to /foo/ It matches (200 status response)
15
+ ========== ======================================== ==========================================
16
+
17
+ Grid table:
18
+
9
19
+--------+------------+
10
20
| Cell 1 | Cell 2 |
11
21
+--------+------------+
@@ -15,6 +25,8 @@ Route path If the requested URL is /foo If the requested URL is /f
15
25
| | extra line |
16
26
+--------+------------+
17
27
28
+ Grid table with head:
29
+
18
30
+--------+------------+
19
31
| Cell 1 | Cell 2 |
20
32
+========+============+
@@ -24,6 +36,8 @@ Route path If the requested URL is /foo If the requested URL is /f
24
36
| | extra line |
25
37
+--------+------------+
26
38
39
+ Grid table with head and multi-line cells:
40
+
27
41
+--------+---------------+
28
42
| Cell 1 | Cell 2 |
29
43
+========+===============+
You can’t perform that action at this time.
0 commit comments