mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-13 21:07:08 +00:00
f3e1d33ea0
The ODF validator complains about an invalid attribute style:contextual-spacing in styles.xml, ultimately an implementation error in whatever old version of LibreOffice that produced the data/odt/styles.xml (should have put it into an extension namespace). Fortunately the attribute was added to ODF 1.3, which was released a couple years ago. So the easiest fix is to simply produce ODF 1.3 instead of 1.2; it's supposed to be fully backward compatible.
19 lines
770 B
XML
19 lines
770 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<office:document-meta
|
|
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
|
|
xmlns:ooo="http://openoffice.org/2004/office"
|
|
xmlns:grddl="http://www.w3.org/2003/g/data-view#"
|
|
office:version="1.3">
|
|
<office:meta>
|
|
<meta:document-statistic
|
|
meta:table-count="0" meta:image-count="0" meta:object-count="0"
|
|
meta:page-count="1" meta:paragraph-count="2" meta:word-count="3"
|
|
meta:character-count="14"
|
|
meta:non-whitespace-character-count="12"/>
|
|
<meta:generator>Pandoc</meta:generator>
|
|
</office:meta>
|
|
</office:document-meta>
|