diff options
| author | John MacFarlane <fiddlosopher@gmail.com> | 2013-11-06 19:18:24 -0800 |
|---|---|---|
| committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-11-06 19:18:47 -0800 |
| commit | 5b99112f229db1fcbe82943678f9f55c1ead8f11 (patch) | |
| tree | 9f473184b96ae82cde2b658f94d409b0406dba64 /src/Text/Pandoc/Writers | |
| parent | f8b4a9e669f4ff8ad0969b56fe2eaa37790bcdf0 (diff) | |
| download | pandoc-5b99112f229db1fcbe82943678f9f55c1ead8f11.tar.gz | |
Docx writer: Fix URL for core-properties in `_rels/.rels`.
Partially addresses #1046.
Diffstat (limited to 'src/Text/Pandoc/Writers')
| -rw-r--r-- | src/Text/Pandoc/Writers/Docx.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/Docx.hs b/src/Text/Pandoc/Writers/Docx.hs index 0fdea0a7a..f1276c831 100644 --- a/src/Text/Pandoc/Writers/Docx.hs +++ b/src/Text/Pandoc/Writers/Docx.hs @@ -247,7 +247,7 @@ writeDocx opts doc@(Pandoc meta _) = do ,("Type","http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties") ,("Target","docProps/app.xml")] , [("Id","rId3") - ,("Type","http://schemas.openxmlformats.org/officedocument/2006/relationships/metadata/core-properties") + ,("Type","http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties") ,("Target","docProps/core.xml")] ] let relsEntry = toEntry relsPath epochtime $ renderXml rels |
