Commit f1bfd08a authored by Andrew Gibiansky's avatar Andrew Gibiansky

removing config.hs, its old

parent 7b1a25ed
...@@ -101,7 +101,6 @@ executable IHaskell ...@@ -101,7 +101,6 @@ executable IHaskell
IHaskell.Types IHaskell.Types
IHaskell.ZeroMQ IHaskell.ZeroMQ
IHaskell.Display IHaskell.Display
IHaskell.Config
extensions: DoAndIfThenElse extensions: DoAndIfThenElse
......
{-# LANGUAGE NoImplicitPrelude, OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
-- | Description : IPython configuration files are compiled-into IHaskell
module IHaskell.Config (ipython, notebook, console, qtconsole, customjs, notebookJavascript) where
import Data.String.Here
import ClassyPrelude
ipython :: String -> String
ipython executable = [template|config/ipython_config.py|]
notebook :: String
notebook = [template|config/ipython_notebook_config.py|]
console :: String
console = [template|config/ipython_console_config.py|]
qtconsole :: String
qtconsole = [template|config/ipython_qtconsole_config.py|]
customjs :: String
customjs = [template|config/custom.js|]
notebookJavascript :: [(FilePath, String)]
notebookJavascript = [("tooltip.js", [template|deps/tooltip.js|]),
("codecell.js", [template|deps/codecell.js|])]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment