diff options
author | John MacFarlane <jgm@berkeley.edu> | 2010-07-11 22:47:52 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2010-07-11 22:47:52 -0700 |
commit | 0181e66250302516863eaa4e25bb5b4b10807e2b (patch) | |
tree | 39671e549071f33df58d642e784a4063b7c283f0 /src/Text/Pandoc/Writers/Docbook.hs | |
parent | cfb27ece34405833592697147276f5bf6418224c (diff) | |
parent | 6972c0b5b040f3de998d936e6ddf8580ecfa7b30 (diff) | |
download | pandoc-0181e66250302516863eaa4e25bb5b4b10807e2b.tar.gz |
Merge branch 'atlists'. Added auto-numbered example lists.
Diffstat (limited to 'src/Text/Pandoc/Writers/Docbook.hs')
-rw-r--r-- | src/Text/Pandoc/Writers/Docbook.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Writers/Docbook.hs b/src/Text/Pandoc/Writers/Docbook.hs index 3abed1610..5223259eb 100644 --- a/src/Text/Pandoc/Writers/Docbook.hs +++ b/src/Text/Pandoc/Writers/Docbook.hs @@ -154,6 +154,7 @@ blockToDocbook opts (OrderedList (start, numstyle, _) (first:rest)) = let attribs = case numstyle of DefaultStyle -> [] Decimal -> [("numeration", "arabic")] + Example -> [("numeration", "arabic")] UpperAlpha -> [("numeration", "upperalpha")] LowerAlpha -> [("numeration", "loweralpha")] UpperRoman -> [("numeration", "upperroman")] |