summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Hakyll/Core/Compiler.hs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/Hakyll/Core/Compiler.hs b/src/Hakyll/Core/Compiler.hs
index 5a1741c..7837991 100644
--- a/src/Hakyll/Core/Compiler.hs
+++ b/src/Hakyll/Core/Compiler.hs
@@ -11,7 +11,6 @@ module Hakyll.Core.Compiler
, getResourceString
, require
, requireAll
- -- , compileFromString
) where
import Prelude hiding ((.), id)
@@ -145,12 +144,3 @@ requireAll pattern f =
deps <- getDeps . compilerResourceProvider <$> ask
lookup' <- compilerDependencyLookup <$> ask
return $ f x $ map (unCompiledItem . lookup') deps
-
-{-
--- | Construct a target from a string, this string being the content of the
--- resource.
---
-compileFromString :: (String -> TargetM a) -- ^ Function to create the target
- -> Compiler a -- ^ Resulting compiler
-compileFromString = return . (getResourceString >>=)
--}