diff options
| author | Edwin Török <[email protected]> | 2023-12-17 16:20:42 +0000 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2023-12-17 10:07:10 -0800 |
| commit | 7e15ebb2cafc60ccbc8820461724f9c122052005 (patch) | |
| tree | c5ec5f1a8e3a1393322aac327b8932f38fed738c /data/docx | |
| parent | 9fba2090049a62272f0d182be65edfc14e1ea237 (diff) | |
reference.docx: fix validation error on w:bCs
```
{
"Description": "The element has unexpected child element 'http://schemas.openxmlformats.org/wordprocessingml/2006/main:bCs'.",
"Path": {
"NamespacesDefinitions": [
"xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\""
],
"Namespaces": {
},
"XPath": "/w:styles[1]/w:style[15]/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/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 765374e93..2118d960e 100644 --- a/data/docx/word/styles.xml +++ b/data/docx/word/styles.xml @@ -220,8 +220,8 @@ </w:pPr> <w:rPr> <w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" /> - <w:i /> <w:bCs /> + <w:i /> <w:color w:val="4F81BD" w:themeColor="accent1" /> <w:sz w:val="24" /> <w:szCs w:val="24" /> |
