fix(table): add schema
This commit is contained in:
parent
1f28faf858
commit
7f08459702
|
@ -142,6 +142,7 @@ class Table extends Plugin<Options> {
|
||||||
{
|
{
|
||||||
name: 'colgroup',
|
name: 'colgroup',
|
||||||
type: 'block',
|
type: 'block',
|
||||||
|
allowIn: ['table'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'col',
|
name: 'col',
|
||||||
|
@ -156,10 +157,12 @@ class Table extends Plugin<Options> {
|
||||||
{
|
{
|
||||||
name: 'thead',
|
name: 'thead',
|
||||||
type: 'block',
|
type: 'block',
|
||||||
|
allowIn: ['table'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'tbody',
|
name: 'tbody',
|
||||||
type: 'block',
|
type: 'block',
|
||||||
|
allowIn: ['table'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'tr',
|
name: 'tr',
|
||||||
|
|
Loading…
Reference in New Issue