diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-05-11 20:35:19 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-05-11 20:35:19 -0700 |
commit | c844634757c49f635a0c0e1e226f9d5130559bfd (patch) | |
tree | 6fa47b0f44b8c464ecffaeae850459037f0a5e17 /src/Text/Pandoc | |
parent | 02fa1050b06f55c54da0e894e46b6a2c603925c9 (diff) | |
download | pandoc-c844634757c49f635a0c0e1e226f9d5130559bfd.tar.gz |
DocBook reader: Support bibliomixed tag.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Readers/DocBook.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/DocBook.hs b/src/Text/Pandoc/Readers/DocBook.hs index 0dfb3c856..849f769c0 100644 --- a/src/Text/Pandoc/Readers/DocBook.hs +++ b/src/Text/Pandoc/Readers/DocBook.hs @@ -55,7 +55,7 @@ List of all DocBook tags, with [x] indicating implemented, [ ] biblioid - An identifier for a document [o] bibliolist - A wrapper for a set of bibliography entries [ ] bibliomisc - Untyped bibliographic information -[ ] bibliomixed - An entry in a Bibliography +[x] bibliomixed - An entry in a Bibliography [ ] bibliomset - A cooked container for related bibliographic information [ ] biblioref - A cross reference to a bibliographic entry [ ] bibliorelation - The relationship of a document to another @@ -617,6 +617,7 @@ parseBlock (Elem e) = "bibliography" -> sect 0 "bibliodiv" -> sect 1 "biblioentry" -> parsePara (elContent e) + "bibliomixed" -> parsePara (elContent e) "glosssee" -> para . (\ils -> text "See " <> ils <> str ".") <$> getInlines e "glossseealso" -> para . (\ils -> text "See also " <> ils <> str ".") |