Fix some warnings in dokuwiki writer (#386)

This commit is contained in:
claremacrae 2013-08-19 21:28:17 +01:00
parent 6cc284cc8e
commit ebcd90b24a

View file

@ -275,8 +275,8 @@ definitionListItemToDokuWiki opts (label, items) = do
isSimpleList :: Block -> Bool
isSimpleList x =
case x of
BulletList items -> True
OrderedList (num, sty, _) items -> True
BulletList _ -> True
OrderedList _ _ -> True
DefinitionList items -> all isSimpleListItem $ concatMap snd items
_ -> False