diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-03-10 17:44:27 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-03-10 17:44:27 +0000 |
commit | 68cd976838c52db771731dac032f3b634d2b73ff (patch) | |
tree | ef8d7a1660287b74ad8c94c1074ea40e222355d9 /src | |
parent | d5f9b1dbb4c1e57b8480afb79753bbd064cecab3 (diff) | |
download | pandoc-68cd976838c52db771731dac032f3b634d2b73ff.tar.gz |
Added definition for DefinitionList block element.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@564 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Definition.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Definition.hs b/src/Text/Pandoc/Definition.hs index 50af38218..2ccc5931a 100644 --- a/src/Text/Pandoc/Definition.hs +++ b/src/Text/Pandoc/Definition.hs @@ -59,6 +59,9 @@ data Block -- a list of blocks) | BulletList [[Block]] -- ^ Bullet list (list of items, each -- a list of blocks) + | DefinitionList [([Inline],[Block])] -- ^ Definition list + -- (list of items, each a pair of an inline list, + -- the term, and a block list) | Header Int [Inline] -- ^ Header - level (integer) and text (inlines) | HorizontalRule -- ^ Horizontal rule | Note String [Block] -- ^ Footnote or endnote - reference (string), |