diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-01-20 13:17:40 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-01-20 13:17:40 -0800 |
commit | fbbff22f0650a310d3c73f181458990ff9bdfec1 (patch) | |
tree | 225cc749e94ca566b753fe6decab8543f58cfd41 | |
parent | 525881ee522ea36ae48618b1cf184ba66ea91c04 (diff) | |
download | pandoc-fbbff22f0650a310d3c73f181458990ff9bdfec1.tar.gz |
Docx: Adjusted list spacing for less cramped number markers.
-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 358cc468f..839a9f7e5 100644 --- a/src/Text/Pandoc/Writers/Docx.hs +++ b/src/Text/Pandoc/Writers/Docx.hs @@ -250,7 +250,7 @@ mkLvl marker lvl = ,patternFor de ("%" ++ show (lvl + 1)) ,show n) step = 720 - hang = step `div` 2 + hang = 480 bulletFor 0 = "\8226" bulletFor 1 = "\9702" bulletFor 2 = "\8227" |