diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-05-25 12:11:46 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-05-25 12:11:46 +0200 |
commit | 650e1ac1fdbbb172c58c1898607a7f82806cf55e (patch) | |
tree | 42d19ae1172130ac6a7bff92f952a9c38a57e790 /data/docx/word | |
parent | e34131502af7ac16bac60a0a8081ffc45d6b1b1e (diff) | |
download | pandoc-650e1ac1fdbbb172c58c1898607a7f82806cf55e.tar.gz |
Docx writer: Use Table rather than "Table Normal" for table style.
"Table Normal" is the default table style and can't be modified.
Closes #3275, further testing welcome.
Diffstat (limited to 'data/docx/word')
-rw-r--r-- | data/docx/word/styles.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/data/docx/word/styles.xml b/data/docx/word/styles.xml index 67d336db1..3596d8bbc 100644 --- a/data/docx/word/styles.xml +++ b/data/docx/word/styles.xml @@ -342,8 +342,9 @@ <w:semiHidden /> <w:unhideWhenUsed /> </w:style> - <w:style w:type="table" w:default="1" w:styleId="TableNormal"> - <w:name w:val="Normal Table" /> + <w:style w:type="table" w:default="1" w:styleId="Table"> + <w:name w:val="Table" /> + <w:basedOn w:val="TableNormal" /> <w:semiHidden /> <w:unhideWhenUsed /> <w:qFormat /> |