diff options
| author | Edwin Török <[email protected]> | 2023-12-17 16:20:08 +0000 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2023-12-17 10:07:10 -0800 |
| commit | 9fba2090049a62272f0d182be65edfc14e1ea237 (patch) | |
| tree | d2eac3d7a6000519d12da31b6a3ec9b0dddaf3d5 /data | |
| parent | 8fc8a857e29ba63d3a73414020f83d39f8e22bd6 (diff) | |
reference.docx: fix validation error on w:b
From OOXMLValidator:
```
{
"Description": "The element has unexpected child element 'http://schemas.openxmlformats.org/wordprocessingml/2006/main:b'.",
"Path": {
"NamespacesDefinitions": [
"xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\""
],
"Namespaces": {
},
"XPath": "/w:styles[1]/w:style[9]/w:rPr[1]",
"PartUri": "/word/styles.xml"
},
"Id": "Sch_UnexpectedElementContentExpectingComplex",
"ErrorType": "Schema"
},
```
Signed-off-by: Edwin Török <[email protected]>
Diffstat (limited to 'data')
| -rw-r--r-- | data/docx/word/styles.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/docx/word/styles.xml b/data/docx/word/styles.xml index df9af5cf6..765374e93 100644 --- a/data/docx/word/styles.xml +++ b/data/docx/word/styles.xml @@ -111,10 +111,10 @@ <w:jc w:val="center" /> </w:pPr> <w:rPr> - <w:sz w:val="20" /> - <w:szCs w:val="20" /> <w:b /> <w:color w:val="345A8A" /> + <w:sz w:val="20" /> + <w:szCs w:val="20" /> </w:rPr> </w:style> <w:style w:type="paragraph" w:customStyle="1" w:styleId="Abstract"> |
