diff --git a/pandoc-citeproc.cabal b/pandoc-citeproc.cabal
--- a/pandoc-citeproc.cabal
+++ b/pandoc-citeproc.cabal
@@ -1,5 +1,5 @@
 name:               pandoc-citeproc
-version:            0.1.1
+version:            0.1.1.1
 cabal-version:      >= 1.12
 synopsis:           Supports using pandoc with citeproc
 
diff --git a/src/Text/CSL/Pandoc.hs b/src/Text/CSL/Pandoc.hs
--- a/src/Text/CSL/Pandoc.hs
+++ b/src/Text/CSL/Pandoc.hs
@@ -75,8 +75,12 @@
 
 stringify :: [Inline] -> String
 stringify = query getStr
-  where getStr (Str x) = x
-        getStr _ = ""
+  where getStr (Str x)    = x
+        getStr Space      = " "
+        getStr (Code _ x) = x
+        getStr (Math _ x) = x
+        getStr LineBreak  = " "
+        getStr _          = ""
 
 getBibRefs :: MetaValue -> IO [Reference]
 getBibRefs (MetaList xs) = concat `fmap` mapM getBibRefs xs
