summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorfrederik-h <frederik-h@users.noreply.github.com>2017-12-25 15:42:21 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2017-12-25 15:42:21 +0100
commit293c379e1634b39315cf6a8cab80470aa3c50ad0 (patch)
treed2981d9090007c901599f67cab8b8c9caaffba3d /lib
parente18de17f4f313483193daf68419a73f23aa79de1 (diff)
downloadhakyll-293c379e1634b39315cf6a8cab80470aa3c50ad0.tar.gz
Extend capture with Regex handling
Diffstat (limited to 'lib')
-rw-r--r--lib/Hakyll/Core/Identifier/Pattern.hs6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Hakyll/Core/Identifier/Pattern.hs b/lib/Hakyll/Core/Identifier/Pattern.hs
index 47ad21b..83d5adc 100644
--- a/lib/Hakyll/Core/Identifier/Pattern.hs
+++ b/lib/Hakyll/Core/Identifier/Pattern.hs
@@ -27,7 +27,7 @@
-- * @\"foo\/*.html\"@ will match all HTML files in the @\"foo\/\"@ directory.
--
-- The 'capture' function allows the user to get access to the elements captured
--- by the capture elements in the pattern.
+-- by the capture elements in a glob or regex pattern.
module Hakyll.Core.Identifier.Pattern
( -- * The pattern type
Pattern
@@ -260,9 +260,11 @@ splits = inits &&& tails >>> uncurry zip >>> reverse
--------------------------------------------------------------------------------
--- | Match a glob against a pattern, generating a list of captures
+-- | Match a glob or regex pattern against an identifier, generating a list of captures
capture :: Pattern -> Identifier -> Maybe [String]
capture (Glob p) i = capture' p (toFilePath i)
+capture (Regex pat) i = Just groups
+ where (_, _, _, groups) = ((toFilePath i) =~ pat) :: (String, String, String, [String])
capture _ _ = Nothing