From 482e5b78a05a02df512a495a2a67657879a2d436 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Wed, 15 Mar 2017 17:19:28 +0100 Subject: OpenDocument writer: use more widely available bullet characters. The old characters weren't available in some font sets. These seem to work well on Windows and Linux versions of LibreOffice. Closes #1400. --- src/Text/Pandoc/Writers/OpenDocument.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Text') diff --git a/src/Text/Pandoc/Writers/OpenDocument.hs b/src/Text/Pandoc/Writers/OpenDocument.hs index 961bb981a..3432d258a 100644 --- a/src/Text/Pandoc/Writers/OpenDocument.hs +++ b/src/Text/Pandoc/Writers/OpenDocument.hs @@ -503,7 +503,7 @@ bulletListStyle l = do , ("style:num-suffix", "." ) , ("text:bullet-char", [bulletList !! i] ) ] (listLevelStyle (1 + i)) - bulletList = map chr $ cycle [8226,8227,8259] + bulletList = map chr $ cycle [8226,9702,9642] listElStyle = map doStyles [0..9] pn <- paraListStyle l return (pn, (l, listElStyle)) -- cgit v1.2.3