File tree 1 file changed +3
-18
lines changed
1 file changed +3
-18
lines changed Original file line number Diff line number Diff line change @@ -302,8 +302,8 @@ For an example, see the definition of [`List`][list].
302
302
### ` Table `
303
303
304
304
` Table ` ([ ` Parent ` ] [ parent ] ) represents tabular data, with alignment.
305
- Its children are either [ ` TableHeader ` ] [ tableheader ] ( the first child),
306
- or [ ` TableRow ` ] [ tablerow ] (all other children) .
305
+ Its children are [ ` TableRow ` ] [ tablerow ] s, the first of which acts as
306
+ a table header row .
307
307
308
308
` table.align ` represents the alignment of columns.
309
309
@@ -336,7 +336,7 @@ Yields:
336
336
"align" : [" left" , " center" ],
337
337
"children" : [
338
338
{
339
- "type" : " tableHeader " ,
339
+ "type" : " tableRow " ,
340
340
"children" : [
341
341
{
342
342
"type" : " tableCell" ,
@@ -377,19 +377,6 @@ Yields:
377
377
}
378
378
```
379
379
380
- ### ` TableHeader `
381
-
382
- ` TableHeader ` ([ ` Parent ` ] [ parent ] ). Its children are always
383
- [ ` TableCell ` ] [ tablecell ] .
384
-
385
- ``` idl
386
- interface TableHeader <: Parent {
387
- type: "tableHeader";
388
- }
389
- ```
390
-
391
- For an example, see the definition of [ ` Table ` ] [ table ] .
392
-
393
380
### ` TableRow `
394
381
395
382
` TableRow ` ([ ` Parent ` ] [ parent ] ). Its children are always
@@ -928,8 +915,6 @@ MIT © [Titus Wormer](http://wooorm.com)
928
915
929
916
[ table ] : #table
930
917
931
- [ tableheader ] : #tableheader
932
-
933
918
[ tablerow ] : #tablerow
934
919
935
920
[ tablecell ] : #tablecell
You can’t perform that action at this time.
0 commit comments