aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2025-09-17 15:45:42 +0200
committerJohn MacFarlane <[email protected]>2025-09-17 15:45:42 +0200
commit2485c594d8444e8fca40ec9a12e052e052f9b1c4 (patch)
tree66011e19862451ab8dd1b1cd2c4a371e9fd4db0b /src
parentd820620ccd519e1793c63845bbf0a4d31c01976e (diff)
Docx reader: change default for textwidth.
This should only be used if sectPr is not found.
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Readers/Docx/Parse.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Docx/Parse.hs b/src/Text/Pandoc/Readers/Docx/Parse.hs
index 08c380bc1..5d54d70a8 100644
--- a/src/Text/Pandoc/Readers/Docx/Parse.hs
+++ b/src/Text/Pandoc/Readers/Docx/Parse.hs
@@ -415,7 +415,7 @@ archiveToDocxWithWarnings archive = do
, envParStyles = parstyles
, envLocation = InDocument
, envDocXmlPath = docXmlPath
- , envTextWidth = fromMaybe 9638 textWidth
+ , envTextWidth = fromMaybe 9360 textWidth
}
rState = ReaderState { stateWarnings = []
, stateFldCharState = []