summaryrefslogtreecommitdiff
path: root/src/Text/Hakyll
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2010-01-24 10:30:19 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2010-01-24 10:30:19 +0100
commit59e3c7f277a64f09ef65c4ca42d7c2398f04acd4 (patch)
tree86afb9c08f7363adc582fef17d40d8f5878cbfa3 /src/Text/Hakyll
parent6c94ad79926d9808ad1817d06c7e9aa69679318f (diff)
downloadhakyll-59e3c7f277a64f09ef65c4ca42d7c2398f04acd4.tar.gz
Wrote some more documentation.
Diffstat (limited to 'src/Text/Hakyll')
-rw-r--r--src/Text/Hakyll/CompressCSS.hs2
-rw-r--r--src/Text/Hakyll/Page.hs2
-rw-r--r--src/Text/Hakyll/Render.hs2
-rw-r--r--src/Text/Hakyll/Util.hs5
4 files changed, 9 insertions, 2 deletions
diff --git a/src/Text/Hakyll/CompressCSS.hs b/src/Text/Hakyll/CompressCSS.hs
index d575348..0836f69 100644
--- a/src/Text/Hakyll/CompressCSS.hs
+++ b/src/Text/Hakyll/CompressCSS.hs
@@ -1,3 +1,5 @@
+-- | Module used for CSS compression. The compression is currently in a simple
+-- state, but would typically reduce the number of bytes by about 25%.
module Text.Hakyll.CompressCSS
( compressCSS
) where
diff --git a/src/Text/Hakyll/Page.hs b/src/Text/Hakyll/Page.hs
index 3b76bfd..abfd0b8 100644
--- a/src/Text/Hakyll/Page.hs
+++ b/src/Text/Hakyll/Page.hs
@@ -1,10 +1,10 @@
+-- | A module for dealing with "Page"s. This module is mostly internally used.
module Text.Hakyll.Page
( Page
, fromContext
, getValue
, getBody
, readPage
- , splitAtDelimiters
) where
import qualified Data.Map as M
diff --git a/src/Text/Hakyll/Render.hs b/src/Text/Hakyll/Render.hs
index 030d999..e1041a0 100644
--- a/src/Text/Hakyll/Render.hs
+++ b/src/Text/Hakyll/Render.hs
@@ -1,3 +1,5 @@
+-- | Module containing rendering functions. All these functions are used to
+-- render files to the @_site@ directory.
module Text.Hakyll.Render
( depends
, render
diff --git a/src/Text/Hakyll/Util.hs b/src/Text/Hakyll/Util.hs
index 5105a31..358c60e 100644
--- a/src/Text/Hakyll/Util.hs
+++ b/src/Text/Hakyll/Util.hs
@@ -1,3 +1,4 @@
+-- | Miscellaneous text manipulation functions.
module Text.Hakyll.Util
( trim
, stripHTML
@@ -26,6 +27,8 @@ stripHTML str = let (beforeTag, rest) = break (== '<') str
-- | Make a HTML link.
--
-- > link "foo" "bar.html" == "<a href='bar.html'>foo</a>"
-link :: String -> String -> String
+link :: String -- ^ Link text.
+ -> String -- ^ Link destination.
+ -> String
link text destination = "<a href=\"" ++ destination ++ "\">"
++ text ++ "</a>"