summaryrefslogtreecommitdiff
path: root/src/Hakyll/Web
diff options
context:
space:
mode:
authorFavonia <favonia@gmail.com>2012-06-10 08:21:01 -0400
committerFavonia <favonia@gmail.com>2012-06-10 08:24:07 -0400
commitf96174bfcc527b7959488cd1a70527ced3884f99 (patch)
treec74bd8effc29ed36ae3febfde956af537275c014 /src/Hakyll/Web
parent2df6ca0d6f6220e4a24746526e6918572b6399f0 (diff)
downloadhakyll-f96174bfcc527b7959488cd1a70527ced3884f99.tar.gz
Do not escape contents within 'style' tags.
Diffstat (limited to 'src/Hakyll/Web')
-rw-r--r--src/Hakyll/Web/Urls.hs10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/Hakyll/Web/Urls.hs b/src/Hakyll/Web/Urls.hs
index 7f33ab0..cfa9b42 100644
--- a/src/Hakyll/Web/Urls.hs
+++ b/src/Hakyll/Web/Urls.hs
@@ -8,6 +8,7 @@ module Hakyll.Web.Urls
) where
import Data.List (isPrefixOf)
+import Data.Char (toLower)
import System.FilePath (splitPath, takeDirectory, joinPath)
import qualified Data.Set as S
@@ -16,13 +17,20 @@ import qualified Text.HTML.TagSoup as TS
-- | Apply a function to each URL on a webpage
--
withUrls :: (String -> String) -> String -> String
-withUrls f = TS.renderTags . map tag . TS.parseTags
+withUrls f = renderTags' . map tag . TS.parseTags
where
tag (TS.TagOpen s a) = TS.TagOpen s $ map attr a
tag x = x
attr (k, v) = (k, if k `S.member` refs then f v else v)
refs = S.fromList ["src", "href"]
+-- | Customized TagSoup renderer.
+-- (The default TagSoup renderer escape CSS within style tags.)
+renderTags' :: [TS.Tag String] -> String
+renderTags' = TS.renderTagsOptions TS.renderOptions
+ { TS.optRawTag = (`elem` ["script", "style"]) . map toLower
+ }
+
-- | Convert a filepath to an URL starting from the site root
--
-- Example: