diff options
| author | John MacFarlane <[email protected]> | 2025-09-17 15:45:42 +0200 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-09-17 15:45:42 +0200 |
| commit | 2485c594d8444e8fca40ec9a12e052e052f9b1c4 (patch) | |
| tree | 66011e19862451ab8dd1b1cd2c4a371e9fd4db0b /src | |
| parent | d820620ccd519e1793c63845bbf0a4d31c01976e (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.hs | 2 |
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 = [] |
