calculate table-borders and serialize them on each tcBorder
take prop-inheritance by table-style into account
account for settings of first/last row/col (no banding yet, but would be extendable)
inside tables, calculate toggle-properties (like bold, italic) set by style (table/character/paragraph) and serialize them on runs
Problem is this difference:
in Word, cell-borders override table-borders.
in CSS, the wider border overrides the thinner one, origin (cell/table) is ignored.
To express the Word-border in CSS, it has to be calculated.
flaws:
no css-rules for table-cells, because its hard to get them through all prop-mappings
char/para style is not calculated outside of tables, because the style-squashing breaks list-inheritance somehow
These changes does the following preprocessing:
Problem is this difference: in Word, cell-borders override table-borders. in CSS, the wider border overrides the thinner one, origin (cell/table) is ignored. To express the Word-border in CSS, it has to be calculated.
flaws: