diff --git a/Main.hs b/Main.hs
--- a/Main.hs
+++ b/Main.hs
@@ -156,7 +156,7 @@
 
 literalJSON :: Value -> Text
 literalJSON x = 
-    let t = T.decodeUtf8 . Prelude.head . BL.toChunks. encode $ x
+    let t = mconcat . map T.decodeUtf8 . BL.toChunks. encode $ x
     in valToText . String $ t
 
 parseText :: Text -> [Chunk]
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -47,6 +47,12 @@
     INSERT into titles (title, year, rating, created)
     VALUES ('Interstellar', 2014, 8.9, DEFAULT);
 
+## Install
+
+
+    cabal install jsonsql
+
+
 ## Usage
 
 
diff --git a/jsonsql.cabal b/jsonsql.cabal
--- a/jsonsql.cabal
+++ b/jsonsql.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                jsonsql
-version:             0.1.2.0
+version:             0.1.2.1
 synopsis:            Interpolate JSON object values into SQL strings
 -- description:         
 homepage:            https://github.com/danchoi/jsonsql
