diff options
-rw-r--r-- | src/Text/Pandoc/Definition.hs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Text/Pandoc/Definition.hs b/src/Text/Pandoc/Definition.hs index 18af11b7f..76d8712a0 100644 --- a/src/Text/Pandoc/Definition.hs +++ b/src/Text/Pandoc/Definition.hs @@ -35,10 +35,9 @@ import Data.Generics data Pandoc = Pandoc Meta [Block] deriving (Eq, Read, Show, Typeable, Data) --- | Bibliographic information for the document: title (list of 'Inline'), --- authors (list of strings), date (string). +-- | Bibliographic information for the document: title, authors, date. data Meta = Meta [Inline] -- title - [[Inline]] -- authors + [[Inline]] -- list of authors [Inline] -- date deriving (Eq, Show, Read, Typeable, Data) |