diff options
| author | Edwin Török <[email protected]> | 2023-12-17 15:55:30 +0000 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2023-12-17 10:07:10 -0800 |
| commit | b7e9a6e0a7259344f4e3e0127c04b80d6d1866a2 (patch) | |
| tree | 7f6e4143881ce45df593a7d98b758a4ec632eb0d /data/docx | |
| parent | c0febe86d5ece7bfd68135958823d691d084255f (diff) | |
reference.docx: Fix validation error on tcBorders
According to `wml.xsd` the order must be:
```
<xsd:sequence>
<xsd:element name="tcBorders" type="CT_TcBorders" minOccurs="0" maxOccurs="1"/>
[...]
<xsd:element name="vAlign" type="CT_VerticalJc" minOccurs="0"/>
```
Signed-off-by: Edwin Török <[email protected]>
Diffstat (limited to 'data/docx')
| -rw-r--r-- | data/docx/word/styles.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/docx/word/styles.xml b/data/docx/word/styles.xml index 03b7361b1..df9af5cf6 100644 --- a/data/docx/word/styles.xml +++ b/data/docx/word/styles.xml @@ -389,10 +389,10 @@ <w:jc w:val="left"/> </w:trPr> <w:tcPr> - <w:vAlign w:val="bottom"/> <w:tcBorders> <w:bottom w:val="single"/> </w:tcBorders> + <w:vAlign w:val="bottom"/> </w:tcPr> </w:tblStylePr> </w:style> |
