summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-23 01:21:21 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-23 01:21:21 +0000
commitf69d9efc8323b202dc0f333036da1c38a2fd270a (patch)
tree39c31399a986466d4285ce917da6e4141991dcc3 /src/Text/Pandoc
parent1296273c8577465a1bb17161909c2596f84c8bd8 (diff)
Added definition list support to HTML reader.
Added a test for definition lists to the html-reader test suite. git-svn-id: https://pandoc.googlecode.com/svn/trunk@781 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r--src/Text/Pandoc/Readers/HTML.hs45
1 files changed, 32 insertions, 13 deletions
diff --git a/src/Text/Pandoc/Readers/HTML.hs b/src/Text/Pandoc/Readers/HTML.hs
index c7832fbf0..969fabb3a 100644
--- a/src/Text/Pandoc/Readers/HTML.hs
+++ b/src/Text/Pandoc/Readers/HTML.hs
@@ -83,6 +83,18 @@ inlinesTilEnd tag = try (do
inlines <- manyTill inline (htmlEndTag tag)
return inlines)
+-- | Parse blocks between open and close tag.
+blocksIn tag = try $ do
+ htmlTag tag
+ spaces
+ blocksTilEnd tag
+
+-- | Parse inlines between open and close tag.
+inlinesIn tag = try $ do
+ htmlTag tag
+ spaces
+ inlinesTilEnd tag
+
-- | Extract type from a tag: e.g. @br@ from @\<br\>@
extractTagType :: String -> String
extractTagType ('<':rest) =
@@ -339,27 +351,34 @@ blockQuote = try (do
-- list blocks
--
-list = choice [ bulletList, orderedList ] <?> "list"
+list = choice [ bulletList, orderedList, definitionList ] <?> "list"
-orderedList = try (do
- tag <- htmlTag "ol"
+orderedList = try $ do
+ htmlTag "ol"
spaces
- items <- sepEndBy1 listItem spaces
+ items <- sepEndBy1 (blocksIn "li") spaces
htmlEndTag "ol"
- return (OrderedList items))
+ return (OrderedList items)
-bulletList = try (do
- tag <- htmlTag "ul"
+bulletList = try $ do
+ htmlTag "ul"
spaces
- items <- sepEndBy1 listItem spaces
+ items <- sepEndBy1 (blocksIn "li") spaces
htmlEndTag "ul"
- return (BulletList items))
+ return (BulletList items)
-listItem = try (do
- tag <- htmlTag "li"
+definitionList = try $ do
+ tag <- htmlTag "dl"
spaces
- blocks <- blocksTilEnd "li"
- return blocks)
+ items <- sepEndBy1 definitionListItem spaces
+ htmlEndTag "dl"
+ return (DefinitionList items)
+
+definitionListItem = try $ do
+ terms <- sepEndBy1 (inlinesIn "dt") spaces
+ defs <- sepEndBy1 (blocksIn "dd") spaces
+ let term = joinWithSep [LineBreak] terms
+ return (term, concat defs)
--
-- paragraph block