blob: c4b2f8db8486122ad05b093aa36ea8cac341b77e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
--------------------------------------------------------------------------------
-- | Parser utilities
module Hakyll.Core.Util.Parser
( metadataKey
, reservedKeys
) where
--------------------------------------------------------------------------------
import Control.Applicative ((<|>))
import Control.Monad (guard, mzero, void)
import qualified Text.Parsec as P
import Text.Parsec.String (Parser)
--------------------------------------------------------------------------------
metadataKey :: Parser String
metadataKey = do
-- Ensure trailing '-' binds to '$' if present.
let hyphon = P.try $ do
void $ P.char '-'
x <- P.lookAhead P.anyChar
guard $ x /= '$'
pure '-'
i <- (:) <$> P.letter <*> P.many (P.alphaNum <|> P.oneOf "_." <|> hyphon)
if i `elem` reservedKeys then mzero else return i
--------------------------------------------------------------------------------
reservedKeys :: [String]
reservedKeys = ["if", "else", "endif", "for", "sep", "endfor", "partial"]
|