diff options
| author | Edwin Török <edwin@etorok.net> | 2023-12-17 15:54:35 +0000 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2023-12-17 10:07:10 -0800 |
| commit | c0febe86d5ece7bfd68135958823d691d084255f (patch) | |
| tree | 10f17d34439b27f51a874006e849a55048b95b34 | |
| parent | 39b59af8c98787de8dbe897f602dedf7a9d2ee0b (diff) | |
reference.docx: fix validation error, remove extra >
There was an extra `>` which showed up as "character content" in the XML:
```
/tmp/styles-pretty.xml:113: element rPr: Schemas validity error : Element '{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr': Character content other than whitespace is not allowed because the content type is 'element-only'.
```
Signed-off-by: Edwin Török <edwin@etorok.net>
| -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 1d6e7a053..03b7361b1 100644 --- a/data/docx/word/styles.xml +++ b/data/docx/word/styles.xml @@ -114,7 +114,7 @@ <w:sz w:val="20" /> <w:szCs w:val="20" /> <w:b /> - <w:color w:val="345A8A" />> + <w:color w:val="345A8A" /> </w:rPr> </w:style> <w:style w:type="paragraph" w:customStyle="1" w:styleId="Abstract"> |
