diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Readers/DocBook.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/DocBook.hs b/src/Text/Pandoc/Readers/DocBook.hs index bb7a7eeed..ca59cc1af 100644 --- a/src/Text/Pandoc/Readers/DocBook.hs +++ b/src/Text/Pandoc/Readers/DocBook.hs @@ -856,6 +856,7 @@ parseInline (Elem e) = "constant" -> codeWithLang ["constant"] "userinput" -> codeWithLang ["userinput"] "varargs" -> return $ code "(...)" + "xref" -> return $ str "?" -- so at least you know something is there "email" -> return $ link ("mailto:" ++ strContent e) "" $ code $ strContent e "uri" -> return $ link (strContent e) "" $ code $ strContent e |