Adding support for using row and cell as field reference and updating the template accordingly.

This commit is contained in:
Christopher Ramírez 2014-06-15 20:36:25 -06:00
parent 476142bb23
commit 2f0584b136
2 changed files with 6 additions and 0 deletions

View file

@ -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']