mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-29 01:41:20 +08:00
OpenDocument writer: small amendment to #5095.
Level one lists should start at 0.5in rather than 0.75in. (At least this is how LibreOffice behaves for me with a new document.)
This commit is contained in:
@@ -601,7 +601,7 @@ orderedListLevelStyle (s,n, d) (l,ls) =
|
||||
|
||||
listLevelStyle :: Int -> Doc
|
||||
listLevelStyle i =
|
||||
let indent = show (0.5 + (0.25 * fromIntegral i :: Double)) in
|
||||
let indent = show (0.25 + (0.25 * fromIntegral i :: Double)) in
|
||||
inTags True "style:list-level-properties"
|
||||
[ ("text:list-level-position-and-space-mode",
|
||||
"label-alignment")
|
||||
|
||||
+189
-189
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user