diff --git a/IHaskell/Display/Aeson.hs b/IHaskell/Display/Aeson.hs
--- a/IHaskell/Display/Aeson.hs
+++ b/IHaskell/Display/Aeson.hs
@@ -1,4 +1,4 @@
-{-# LANGUAGE TypeSynonymInstances, QuasiQuotes #-}
+{-# LANGUAGE TypeSynonymInstances #-}
 
 module IHaskell.Display.Aeson () where
 
@@ -13,7 +13,6 @@
 import           IHaskell.Display
 
 instance IHaskellDisplay Value where
-  display renderable = return $ Display [plain json, html dom]
+  display renderable = return $ Display [plain json]
     where
       json = T.unpack $ E.decodeUtf8 $ LBS.toStrict $ encodePretty renderable
-      dom = [i|<div class="highlight-code" id="javascript">${json}</div>|]
diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -1,2 +1,3 @@
-import Distribution.Simple
+import           Distribution.Simple
+
 main = defaultMain
diff --git a/ihaskell-aeson.cabal b/ihaskell-aeson.cabal
--- a/ihaskell-aeson.cabal
+++ b/ihaskell-aeson.cabal
@@ -7,7 +7,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.3.0.0
+version:             0.3.0.1
 
 -- A short (one-line) description of the package.
 synopsis:            IHaskell display instances for Aeson
@@ -51,13 +51,9 @@
   
   -- Modules included in this library but not exported.
   -- other-modules:       
-  
-  -- Language extensions.
-  default-extensions: DoAndIfThenElse
-              OverloadedStrings
              
   -- Other library packages from which modules are imported.
-  build-depends:       base >=4.6 && <4.9,
+  build-depends:       base >=4.6 && <5,
                        here,
                        text,
                        bytestring,
