Adding support for using row and cell as field reference and updating the template accordingly.
This commit is contained in:
parent
476142bb23
commit
2f0584b136
2 changed files with 6 additions and 0 deletions
|
|
@ -49,13 +49,19 @@ FLOW_REFERENCES = {
|
|||
|
||||
'table:table-row' : 'table:table-row',
|
||||
'table-row' : 'table:table-row',
|
||||
'row' : 'table:table-row',
|
||||
'before::table-row' : 'table:table-row',
|
||||
'after::table-row' : 'table:table-row',
|
||||
'before::row' : 'table:table-row',
|
||||
'after::row' : 'table:table-row',
|
||||
|
||||
'table:table-cell' : 'table:table-cell',
|
||||
'table-cell' : 'table:table-cell',
|
||||
'cell' : 'table:table-cell',
|
||||
'before::table-cell' : 'table:table-cell',
|
||||
'after::table-cell' : 'table:table-cell',
|
||||
'before::cell' : 'table:table-cell',
|
||||
'after::cell' : 'table:table-cell',
|
||||
}
|
||||
|
||||
SUPPORTED_FIELD_REFERECES = ['text:p', 'table:table-row', 'table:table-cell']
|
||||
|
|
|
|||
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue