summaryrefslogtreecommitdiff
path: root/src/Text/Hakyll/Renderables.hs
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2009-12-27 18:45:58 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2009-12-27 18:45:58 +0100
commitb6c81987965f83962217e3b1abdfe36d3a53a812 (patch)
treeb7135207fdfb05cf0b55d06d2c9d197746c5b010 /src/Text/Hakyll/Renderables.hs
parent14f86bab3e471c368e475e8d05713dac128d41f7 (diff)
downloadhakyll-b6c81987965f83962217e3b1abdfe36d3a53a812.tar.gz
More explicit imports.
Diffstat (limited to 'src/Text/Hakyll/Renderables.hs')
-rw-r--r--src/Text/Hakyll/Renderables.hs11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/Text/Hakyll/Renderables.hs b/src/Text/Hakyll/Renderables.hs
index c79df76..996534e 100644
--- a/src/Text/Hakyll/Renderables.hs
+++ b/src/Text/Hakyll/Renderables.hs
@@ -1,14 +1,13 @@
module Text.Hakyll.Renderables
- ( CustomPage,
- createCustomPage,
- PagePath,
- createPagePath
+ ( CustomPage
+ , createCustomPage
+ , PagePath
+ , createPagePath
) where
-import System.FilePath
+import System.FilePath (FilePath)
import qualified Data.ByteString.Lazy.Char8 as B
import qualified Data.Map as M
-import Control.Monad
import Text.Hakyll.Page
import Text.Hakyll.Renderable
import Text.Hakyll.File