cheapskate-0.1: Cheapskate/Util.hs
{-# LANGUAGE OverloadedStrings #-}
module Cheapskate.Util (
joinLines
, tabFilter
, isWhitespace
, isEscapable
, normalizeReference
, Scanner
, scanIndentSpace
, scanNonindentSpace
, scanSpacesToColumn
, scanChar
, scanBlankline
, scanSpaces
, scanSpnl
, nfb
, nfbChar
, upToCountChars
) where
import Data.Text (Text)
import qualified Data.Text as T
import Data.Char
import Control.Applicative
import Cheapskate.ParserCombinators
-- Utility functions.
-- Like T.unlines but does not add a final newline.
-- Concatenates lines with newlines between.
joinLines :: [Text] -> Text
joinLines = T.intercalate "\n"
-- Convert tabs to spaces using a 4-space tab stop.
tabFilter :: Text -> Text
tabFilter = T.concat . pad . T.split (== '\t')
where pad [] = []
pad [t] = [t]
pad (t:ts) = let tl = T.length t
n = tl + 4 - (tl `mod` 4)
in T.justifyLeft n ' ' t : pad ts
-- These are the whitespace characters that are significant in
-- parsing markdown. We can treat \160 (nonbreaking space) etc.
-- as regular characters. This function should be considerably
-- faster than the unicode-aware isSpace from Data.Char.
isWhitespace :: Char -> Bool
isWhitespace ' ' = True
isWhitespace '\t' = True
isWhitespace '\n' = True
isWhitespace '\r' = True
isWhitespace _ = False
-- The original Markdown only allowed certain symbols
-- to be backslash-escaped. It was hard to remember
-- which ones could be, so we now allow any ascii punctuation mark or
-- symbol to be escaped, whether or not it has a use in Markdown.
isEscapable :: Char -> Bool
isEscapable c = isAscii c && (isSymbol c || isPunctuation c)
-- Link references are case sensitive and ignore line breaks
-- and repeated spaces.
-- So, [APPLES are good] == [Apples are good] ==
-- [Apples
-- are good].
normalizeReference :: Text -> Text
normalizeReference = T.toCaseFold . T.concat . T.split isWhitespace
-- Scanners are implemented here as attoparsec parsers,
-- which consume input and capture nothing. They could easily
-- be implemented as regexes in other languages, or hand-coded.
-- With the exception of scanSpnl, they are all intended to
-- operate on a single line of input (so endOfInput = endOfLine).
type Scanner = Parser ()
-- Scan four spaces.
scanIndentSpace :: Scanner
scanIndentSpace = () <$ count 4 (skip (==' '))
scanSpacesToColumn :: Int -> Scanner
scanSpacesToColumn col = do
currentCol <- column <$> getPosition
case col - currentCol of
n | n >= 1 -> () <$ (count n (skip (==' ')))
| otherwise -> return ()
-- Scan 0-3 spaces.
scanNonindentSpace :: Scanner
scanNonindentSpace = () <$ upToCountChars 3 (==' ')
-- Scan a specified character.
scanChar :: Char -> Scanner
scanChar c = skip (== c) >> return ()
-- Scan a blankline.
scanBlankline :: Scanner
scanBlankline = scanSpaces *> endOfInput
-- Scan 0 or more spaces
scanSpaces :: Scanner
scanSpaces = skipWhile (==' ')
-- Scan 0 or more spaces, and optionally a newline
-- and more spaces.
scanSpnl :: Scanner
scanSpnl = scanSpaces *> option () (char '\n' *> scanSpaces)
-- Not followed by: Succeed without consuming input if the specified
-- scanner would not succeed.
nfb :: Parser a -> Scanner
nfb = notFollowedBy
-- Succeed if not followed by a character. Consumes no input.
nfbChar :: Char -> Scanner
nfbChar c = nfb (skip (==c))
upToCountChars :: Int -> (Char -> Bool) -> Parser Text
upToCountChars cnt f =
scan 0 (\n c -> if n < cnt && f c then Just (n+1) else Nothing)