diff options
Diffstat (limited to 'src/Text')
| -rw-r--r-- | src/Text/Pandoc/Writers/Docx.hs | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/src/Text/Pandoc/Writers/Docx.hs b/src/Text/Pandoc/Writers/Docx.hs index 91f620c5c..396e7a482 100644 --- a/src/Text/Pandoc/Writers/Docx.hs +++ b/src/Text/Pandoc/Writers/Docx.hs @@ -262,13 +262,13 @@ mkLvl marker lvl =                                           ,show n)            step = 720            hang = 480 -          bulletFor 0 = "\8226" -          bulletFor 1 = "\9702" -          bulletFor 2 = "\8227" -          bulletFor 3 = "\8259" -          bulletFor 4 = "\8226" -          bulletFor 5 = "\9702" -          bulletFor _ = "\8227" +          bulletFor 0 = "\x2022"  -- filled circle +          bulletFor 1 = "\x2013"  -- en dash +          bulletFor 2 = "\x2022"  -- hyphen bullet +          bulletFor 3 = "\x2013" +          bulletFor 4 = "\x2022" +          bulletFor 5 = "\x2013" +          bulletFor _ = "\x2022"            styleFor UpperAlpha _ = "upperLetter"            styleFor LowerAlpha _ = "lowerLetter"            styleFor UpperRoman _ = "upperRoman" | 
