Copyright | Copyright (C) 2006-2023 John MacFarlane |
---|---|
License | GNU GPL, version 2 or above |
Maintainer | John MacFarlane <jgm@berkeley.edu> |
Stability | alpha |
Portability | portable |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
A utility library with parsers used in pandoc readers.
Synopsis
- module Text.Pandoc.Sources
- countChar :: (Stream s m Char, UpdateSourcePos s Char, Monad m) => Int -> ParsecT s st m Char -> ParsecT s st m Text
- textStr :: (Stream s m Char, UpdateSourcePos s Char) => Text -> ParsecT s u m Text
- anyLine :: Monad m => ParsecT Sources st m Text
- anyLineNewline :: Monad m => ParsecT Sources st m Text
- indentWith :: (Stream s m Char, UpdateSourcePos s Char) => HasReaderOptions st => Int -> ParsecT s st m Text
- manyChar :: Stream s m t => ParsecT s st m Char -> ParsecT s st m Text
- many1Char :: Stream s m t => ParsecT s st m Char -> ParsecT s st m Text
- manyTillChar :: Stream s m t => ParsecT s st m Char -> ParsecT s st m a -> ParsecT s st m Text
- many1TillChar :: (Show end, Stream s m t) => ParsecT s st m Char -> ParsecT s st m end -> ParsecT s st m Text
- many1Till :: (Show end, Stream s m t) => ParsecT s st m a -> ParsecT s st m end -> ParsecT s st m [a]
- manyUntil :: ParsecT s u m a -> ParsecT s u m b -> ParsecT s u m ([a], b)
- manyUntilChar :: ParsecT s u m Char -> ParsecT s u m b -> ParsecT s u m (Text, b)
- sepBy1' :: ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a]
- notFollowedBy' :: (Show b, Stream s m a) => ParsecT s st m b -> ParsecT s st m ()
- oneOfStrings :: (Stream s m Char, UpdateSourcePos s Char) => [Text] -> ParsecT s st m Text
- oneOfStringsCI :: (Stream s m Char, UpdateSourcePos s Char) => [Text] -> ParsecT s st m Text
- spaceChar :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Char
- nonspaceChar :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Char
- skipSpaces :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m ()
- blankline :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Char
- blanklines :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Text
- gobbleSpaces :: (HasReaderOptions st, Monad m) => Int -> ParsecT Sources st m ()
- gobbleAtMostSpaces :: (HasReaderOptions st, Monad m) => Int -> ParsecT Sources st m Int
- enclosed :: (Show end, Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m t -> ParsecT s st m end -> ParsecT s st m a -> ParsecT s st m [a]
- stringAnyCase :: (Stream s m Char, UpdateSourcePos s Char) => Text -> ParsecT s st m Text
- parseFromString :: Monad m => ParsecT Sources st m r -> Text -> ParsecT Sources st m r
- parseFromString' :: (Monad m, HasLastStrPosition u) => ParsecT Sources u m a -> Text -> ParsecT Sources u m a
- lineClump :: Monad m => ParsecT Sources st m Text
- charsInBalanced :: (Stream s m Char, UpdateSourcePos s Char) => Char -> Char -> ParsecT s st m Text -> ParsecT s st m Text
- romanNumeral :: (Stream s m Char, UpdateSourcePos s Char) => Bool -> ParsecT s st m Int
- emailAddress :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (Text, Text)
- uri :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (Text, Text)
- mathInline :: (HasReaderOptions st, Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Text
- mathDisplay :: (HasReaderOptions st, Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Text
- withHorizDisplacement :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m a -> ParsecT s st m (a, Int)
- withRaw :: Monad m => ParsecT Sources st m a -> ParsecT Sources st m (a, Text)
- fromParsecError :: Sources -> ParseError -> PandocError
- escaped :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Char -> ParsecT s st m Char
- characterReference :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Text
- upperRoman :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (ListNumberStyle, Int)
- lowerRoman :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (ListNumberStyle, Int)
- decimal :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (ListNumberStyle, Int)
- lowerAlpha :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (ListNumberStyle, Int)
- upperAlpha :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (ListNumberStyle, Int)
- anyOrderedListMarker :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s ParserState m ListAttributes
- orderedListMarker :: (Stream s m Char, UpdateSourcePos s Char) => ListNumberStyle -> ListNumberDelim -> ParsecT s ParserState m Int
- charRef :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Inline
- lineBlockLines :: Monad m => ParsecT Sources st m [Text]
- tableWith :: (Stream s m Char, UpdateSourcePos s Char, HasReaderOptions st, Monad mf) => ParsecT s st m (mf [Blocks], [Alignment], [Int]) -> ([Int] -> ParsecT s st m (mf [Blocks])) -> ParsecT s st m sep -> ParsecT s st m end -> ParsecT s st m (mf Blocks)
- tableWith' :: (Stream s m Char, UpdateSourcePos s Char, HasReaderOptions st, Monad mf) => TableNormalization -> ParsecT s st m (mf [Blocks], [Alignment], [Int]) -> ([Int] -> ParsecT s st m (mf [Blocks])) -> ParsecT s st m sep -> ParsecT s st m end -> ParsecT s st m (mf TableComponents)
- widthsFromIndices :: Int -> [Int] -> [Double]
- gridTableWith :: (Monad m, Monad mf, HasLastStrPosition st, HasReaderOptions st) => ParsecT Sources st m (mf Blocks) -> ParsecT Sources st m (mf Blocks)
- gridTableWith' :: (Monad m, Monad mf, HasReaderOptions st, HasLastStrPosition st) => TableNormalization -> ParsecT Sources st m (mf Blocks) -> ParsecT Sources st m (mf TableComponents)
- data TableComponents = TableComponents {
- tableAttr :: Attr
- tableCaption :: Caption
- tableColSpecs :: [ColSpec]
- tableHead :: TableHead
- tableBodies :: [TableBody]
- tableFoot :: TableFoot
- data TableNormalization
- toTableComponents :: [Alignment] -> [Double] -> [Blocks] -> [[Blocks]] -> TableComponents
- toTableComponents' :: TableNormalization -> [Alignment] -> [Double] -> [Blocks] -> [[Blocks]] -> TableComponents
- readWith :: ToSources t => Parsec Sources st a -> st -> t -> Either PandocError a
- readWithM :: (Monad m, ToSources t) => ParsecT Sources st m a -> st -> t -> m (Either PandocError a)
- testStringWith :: Show a => ParsecT Sources ParserState Identity a -> Text -> IO ()
- guardEnabled :: (Stream s m a, HasReaderOptions st) => Extension -> ParsecT s st m ()
- guardDisabled :: (Stream s m a, HasReaderOptions st) => Extension -> ParsecT s st m ()
- updateLastStrPos :: (Stream s m a, HasLastStrPosition st) => ParsecT s st m ()
- notAfterString :: (Stream s m a, HasLastStrPosition st) => ParsecT s st m Bool
- logMessage :: (Stream s m a, HasLogMessages st) => LogMessage -> ParsecT s st m ()
- reportLogMessages :: (PandocMonad m, HasLogMessages st) => ParsecT s st m ()
- data ParserState = ParserState {
- stateOptions :: ReaderOptions
- stateParserContext :: ParserContext
- stateQuoteContext :: QuoteContext
- stateAllowLinks :: Bool
- stateAllowLineBreaks :: Bool
- stateLastStrPos :: Maybe SourcePos
- stateKeys :: KeyTable
- stateHeaderKeys :: KeyTable
- stateSubstitutions :: SubstTable
- stateNotes :: NoteTable
- stateNotes' :: NoteTable'
- stateNoteRefs :: Set Text
- stateInNote :: Bool
- stateNoteNumber :: Int
- stateMeta :: Meta
- stateMeta' :: Future ParserState Meta
- stateCitations :: Map Text Text
- stateHeaderTable :: [HeaderType]
- stateIdentifiers :: Set Text
- stateNextExample :: Int
- stateExamples :: Map Text Int
- stateMacros :: Map Text Macro
- stateRstDefaultRole :: Text
- stateRstHighlight :: Maybe Text
- stateRstCustomRoles :: Map Text (Text, Maybe Text, Attr)
- stateCaption :: Maybe Inlines
- stateInHtmlBlock :: Maybe Text
- stateFencedDivLevel :: Int
- stateContainers :: [Text]
- stateLogMessages :: [LogMessage]
- stateMarkdownAttribute :: Bool
- class HasReaderOptions st where
- extractReaderOptions :: st -> ReaderOptions
- getOption :: Stream s m t => (ReaderOptions -> b) -> ParsecT s st m b
- class HasIdentifierList st where
- extractIdentifierList :: st -> Set Text
- updateIdentifierList :: (Set Text -> Set Text) -> st -> st
- class HasMacros st where
- extractMacros :: st -> Map Text Macro
- updateMacros :: (Map Text Macro -> Map Text Macro) -> st -> st
- class HasLogMessages st where
- addLogMessage :: LogMessage -> st -> st
- getLogMessages :: st -> [LogMessage]
- class HasLastStrPosition st where
- setLastStrPos :: Maybe SourcePos -> st -> st
- getLastStrPos :: st -> Maybe SourcePos
- class HasIncludeFiles st where
- getIncludeFiles :: st -> [Text]
- addIncludeFile :: Text -> st -> st
- dropLatestIncludeFile :: st -> st
- defaultParserState :: ParserState
- data HeaderType
- data ParserContext
- data QuoteContext
- class HasQuoteContext st m where
- getQuoteContext :: Stream s m t => ParsecT s st m QuoteContext
- withQuoteContext :: QuoteContext -> ParsecT s st m a -> ParsecT s st m a
- type NoteTable = [(Text, Text)]
- type NoteTable' = Map Text (SourcePos, Future ParserState Blocks)
- type KeyTable = Map Key (Target, Attr)
- type SubstTable = Map Key Inlines
- newtype Key = Key Text
- toKey :: Text -> Key
- registerHeader :: (Stream s m a, HasReaderOptions st, HasLogMessages st, HasIdentifierList st) => Attr -> Inlines -> ParsecT s st m Attr
- smartPunctuation :: (HasReaderOptions st, HasLastStrPosition st, HasQuoteContext st m, Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Inlines -> ParsecT s st m Inlines
- singleQuoteStart :: (HasLastStrPosition st, HasQuoteContext st m, Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m ()
- singleQuoteEnd :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m ()
- doubleQuoteStart :: (HasLastStrPosition st, HasQuoteContext st m, Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m ()
- doubleQuoteEnd :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m ()
- apostrophe :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Inlines
- doubleCloseQuote :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Inlines
- ellipses :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Inlines
- dash :: (HasReaderOptions st, Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Inlines
- citeKey :: (Stream s m Char, UpdateSourcePos s Char, HasLastStrPosition st) => Bool -> ParsecT s st m (Bool, Text)
- type Parsec s u = ParsecT s u Identity
- data ParsecT s u (m :: Type -> Type) a
- newtype Future s a = Future {
- runDelayed :: Reader s a
- runF :: Future s a -> s -> a
- askF :: Future s s
- asksF :: (s -> a) -> Future s a
- returnF :: Monad m => a -> m (Future s a)
- trimInlinesF :: Future s Inlines -> Future s Inlines
- token :: Stream s m t => (t -> Text) -> (t -> SourcePos) -> (t -> Maybe a) -> ParsecT s st m a
- (<+?>) :: Monoid a => ParsecT s st m a -> ParsecT s st m a -> ParsecT s st m a
- extractIdClass :: Attr -> Attr
- insertIncludedFile :: (PandocMonad m, HasIncludeFiles st) => ParsecT a st m b -> (Text -> a) -> [FilePath] -> FilePath -> Maybe Int -> Maybe Int -> ParsecT a st m b
- class Monad m => Stream s (m :: Type -> Type) t | s -> t where
- runParser :: Stream s Identity t => Parsec s u a -> u -> SourceName -> s -> Either ParseError a
- runParserT :: Stream s m t => ParsecT s u m a -> u -> SourceName -> s -> m (Either ParseError a)
- parse :: Stream s Identity t => Parsec s () a -> SourceName -> s -> Either ParseError a
- tokenPrim :: forall s (m :: Type -> Type) t a u. Stream s m t => (t -> String) -> (SourcePos -> t -> s -> SourcePos) -> (t -> Maybe a) -> ParsecT s u m a
- anyToken :: forall s (m :: Type -> Type) t u. (Stream s m t, Show t) => ParsecT s u m t
- getInput :: forall (m :: Type -> Type) s u. Monad m => ParsecT s u m s
- setInput :: forall (m :: Type -> Type) s u. Monad m => s -> ParsecT s u m ()
- unexpected :: forall s (m :: Type -> Type) t u a. Stream s m t => String -> ParsecT s u m a
- skipMany :: forall s u (m :: Type -> Type) a. ParsecT s u m a -> ParsecT s u m ()
- skipMany1 :: forall s (m :: Type -> Type) t u a. Stream s m t => ParsecT s u m a -> ParsecT s u m ()
- count :: forall s (m :: Type -> Type) t u a. Stream s m t => Int -> ParsecT s u m a -> ParsecT s u m [a]
- eof :: forall s (m :: Type -> Type) t u. (Stream s m t, Show t) => ParsecT s u m ()
- lookAhead :: forall s (m :: Type -> Type) t u a. Stream s m t => ParsecT s u m a -> ParsecT s u m a
- notFollowedBy :: forall s (m :: Type -> Type) t a u. (Stream s m t, Show a) => ParsecT s u m a -> ParsecT s u m ()
- many :: forall s u (m :: Type -> Type) a. ParsecT s u m a -> ParsecT s u m [a]
- many1 :: forall s (m :: Type -> Type) t u a. Stream s m t => ParsecT s u m a -> ParsecT s u m [a]
- manyTill :: forall s (m :: Type -> Type) t u a end. Stream s m t => ParsecT s u m a -> ParsecT s u m end -> ParsecT s u m [a]
- (<|>) :: forall s u (m :: Type -> Type) a. ParsecT s u m a -> ParsecT s u m a -> ParsecT s u m a
- (<?>) :: forall s u (m :: Type -> Type) a. ParsecT s u m a -> String -> ParsecT s u m a
- choice :: forall s (m :: Type -> Type) t u a. Stream s m t => [ParsecT s u m a] -> ParsecT s u m a
- try :: forall s u (m :: Type -> Type) a. ParsecT s u m a -> ParsecT s u m a
- sepBy :: forall s (m :: Type -> Type) t u a sep. Stream s m t => ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a]
- sepBy1 :: forall s (m :: Type -> Type) t u a sep. Stream s m t => ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a]
- sepEndBy :: forall s (m :: Type -> Type) t u a sep. Stream s m t => ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a]
- sepEndBy1 :: forall s (m :: Type -> Type) t u a sep. Stream s m t => ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a]
- endBy :: forall s (m :: Type -> Type) t u a sep. Stream s m t => ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a]
- endBy1 :: forall s (m :: Type -> Type) t u a sep. Stream s m t => ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a]
- option :: forall s (m :: Type -> Type) t a u. Stream s m t => a -> ParsecT s u m a -> ParsecT s u m a
- optional :: forall s (m :: Type -> Type) t u a. Stream s m t => ParsecT s u m a -> ParsecT s u m ()
- optionMaybe :: forall s (m :: Type -> Type) t u a. Stream s m t => ParsecT s u m a -> ParsecT s u m (Maybe a)
- getState :: forall (m :: Type -> Type) s u. Monad m => ParsecT s u m u
- setState :: forall (m :: Type -> Type) u s. Monad m => u -> ParsecT s u m ()
- updateState :: forall (m :: Type -> Type) u s. Monad m => (u -> u) -> ParsecT s u m ()
- data SourcePos
- type SourceName = String
- updatePosString :: SourcePos -> String -> SourcePos
- getPosition :: forall (m :: Type -> Type) s u. Monad m => ParsecT s u m SourcePos
- setPosition :: forall (m :: Type -> Type) s u. Monad m => SourcePos -> ParsecT s u m ()
- sourceName :: SourcePos -> SourceName
- setSourceName :: SourcePos -> SourceName -> SourcePos
- sourceColumn :: SourcePos -> Column
- sourceLine :: SourcePos -> Line
- setSourceColumn :: SourcePos -> Column -> SourcePos
- setSourceLine :: SourcePos -> Line -> SourcePos
- incSourceColumn :: SourcePos -> Column -> SourcePos
- incSourceLine :: SourcePos -> Line -> SourcePos
- newPos :: SourceName -> Line -> Column -> SourcePos
- initialPos :: SourceName -> SourcePos
- type Line = Int
- type Column = Int
- data ParseError
- errorMessages :: ParseError -> [Message]
- messageString :: Message -> String
Documentation
module Text.Pandoc.Sources
countChar :: (Stream s m Char, UpdateSourcePos s Char, Monad m) => Int -> ParsecT s st m Char -> ParsecT s st m Text Source #
Like count
, but packs its result
textStr :: (Stream s m Char, UpdateSourcePos s Char) => Text -> ParsecT s u m Text Source #
Like string
, but uses Text
.
anyLine :: Monad m => ParsecT Sources st m Text Source #
Parse any line of text, returning the contents without the final newline.
anyLineNewline :: Monad m => ParsecT Sources st m Text Source #
Parse any line, include the final newline in the output
indentWith :: (Stream s m Char, UpdateSourcePos s Char) => HasReaderOptions st => Int -> ParsecT s st m Text Source #
Parse indent by specified number of spaces (or equiv. tabs)
manyChar :: Stream s m t => ParsecT s st m Char -> ParsecT s st m Text Source #
Like many
, but packs its result.
many1Char :: Stream s m t => ParsecT s st m Char -> ParsecT s st m Text Source #
Like many1
, but packs its result.
manyTillChar :: Stream s m t => ParsecT s st m Char -> ParsecT s st m a -> ParsecT s st m Text Source #
Like manyTill
, but packs its result.
many1TillChar :: (Show end, Stream s m t) => ParsecT s st m Char -> ParsecT s st m end -> ParsecT s st m Text Source #
Like many1Till
, but packs its result
many1Till :: (Show end, Stream s m t) => ParsecT s st m a -> ParsecT s st m end -> ParsecT s st m [a] Source #
Like manyTill
, but reads at least one item.
manyUntil :: ParsecT s u m a -> ParsecT s u m b -> ParsecT s u m ([a], b) Source #
Like manyTill
, but also returns the result of end parser.
manyUntilChar :: ParsecT s u m Char -> ParsecT s u m b -> ParsecT s u m (Text, b) Source #
Like manyUntil
, but also packs its result.
sepBy1' :: ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a] Source #
Like sepBy1
from Parsec,
but does not fail if it sep
succeeds and p
fails.
notFollowedBy' :: (Show b, Stream s m a) => ParsecT s st m b -> ParsecT s st m () Source #
A more general form of notFollowedBy
. This one allows any
type of parser to be specified, and succeeds only if that parser fails.
It does not consume any input.
oneOfStrings :: (Stream s m Char, UpdateSourcePos s Char) => [Text] -> ParsecT s st m Text Source #
Parses one of a list of strings. If the list contains two strings one of which is a prefix of the other, the longer string will be matched if possible.
oneOfStringsCI :: (Stream s m Char, UpdateSourcePos s Char) => [Text] -> ParsecT s st m Text Source #
Parses one of a list of strings (tried in order), case insensitive.
spaceChar :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Char Source #
Parses a space or tab.
nonspaceChar :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Char Source #
Parses a nonspace, nonnewline character.
skipSpaces :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m () Source #
Skips zero or more spaces or tabs.
blankline :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Char Source #
Skips zero or more spaces or tabs, then reads a newline.
blanklines :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Text Source #
Parses one or more blank lines and returns a string of newlines.
gobbleSpaces :: (HasReaderOptions st, Monad m) => Int -> ParsecT Sources st m () Source #
Gobble n spaces; if tabs are encountered, expand them and gobble some or all of their spaces, leaving the rest.
gobbleAtMostSpaces :: (HasReaderOptions st, Monad m) => Int -> ParsecT Sources st m Int Source #
Gobble up to n spaces; if tabs are encountered, expand them and gobble some or all of their spaces, leaving the rest.
:: (Show end, Stream s m Char, UpdateSourcePos s Char) | |
=> ParsecT s st m t | start parser |
-> ParsecT s st m end | end parser |
-> ParsecT s st m a | content parser (to be used repeatedly) |
-> ParsecT s st m [a] |
Parses material enclosed between start and end parsers.
stringAnyCase :: (Stream s m Char, UpdateSourcePos s Char) => Text -> ParsecT s st m Text Source #
Parse string, case insensitive.
parseFromString :: Monad m => ParsecT Sources st m r -> Text -> ParsecT Sources st m r Source #
Parse contents of str
using parser
and return result.
parseFromString' :: (Monad m, HasLastStrPosition u) => ParsecT Sources u m a -> Text -> ParsecT Sources u m a Source #
Like parseFromString
but specialized for ParserState
.
This resets stateLastStrPos
, which is almost always what we want.
lineClump :: Monad m => ParsecT Sources st m Text Source #
Parse raw line block up to and including blank lines.
charsInBalanced :: (Stream s m Char, UpdateSourcePos s Char) => Char -> Char -> ParsecT s st m Text -> ParsecT s st m Text Source #
Parse a string of characters between an open character
and a close character, including text between balanced
pairs of open and close, which must be different. For example,
charsInBalanced '(' ')' anyChar
will parse "(hello (there))"
and return "hello (there)".
Parses a roman numeral (uppercase or lowercase), returns number.
emailAddress :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (Text, Text) Source #
Parses an email address; returns original and corresponding escaped mailto: URI.
uri :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (Text, Text) Source #
Parses a URI. Returns pair of original and URI-escaped version.
mathInline :: (HasReaderOptions st, Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Text Source #
mathDisplay :: (HasReaderOptions st, Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Text Source #
withHorizDisplacement Source #
:: (Stream s m Char, UpdateSourcePos s Char) | |
=> ParsecT s st m a | Parsec to apply |
-> ParsecT s st m (a, Int) | (result, displacement) |
Applies a parser, returns tuple of its results and its horizontal displacement (the difference between the source column at the end and the source column at the beginning). Vertical displacement (source row) is ignored.
withRaw :: Monad m => ParsecT Sources st m a -> ParsecT Sources st m (a, Text) Source #
Applies a parser and returns the raw string that was parsed, along with the value produced by the parser.
fromParsecError :: Sources -> ParseError -> PandocError Source #
:: (Stream s m Char, UpdateSourcePos s Char) | |
=> ParsecT s st m Char | Parsec for character to escape |
-> ParsecT s st m Char |
Parses backslash, then applies character parser.
characterReference :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Text Source #
Parse character entity.
upperRoman :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (ListNumberStyle, Int) Source #
Parses an uppercase roman numeral and returns (UpperRoman, number).
lowerRoman :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (ListNumberStyle, Int) Source #
Parses a lowercase roman numeral and returns (LowerRoman, number).
decimal :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (ListNumberStyle, Int) Source #
Parses a decimal numeral and returns (Decimal, number).
lowerAlpha :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (ListNumberStyle, Int) Source #
Parses a lowercase letter and returns (LowerAlpha, number).
upperAlpha :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m (ListNumberStyle, Int) Source #
Parses an uppercase letter and returns (UpperAlpha, number).
anyOrderedListMarker :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s ParserState m ListAttributes Source #
Parses an ordered list marker and returns list attributes.
orderedListMarker :: (Stream s m Char, UpdateSourcePos s Char) => ListNumberStyle -> ListNumberDelim -> ParsecT s ParserState m Int Source #
Parses an ordered list marker with a given style and delimiter, returns number.
charRef :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Inline Source #
Parses a character reference and returns a Str element.
lineBlockLines :: Monad m => ParsecT Sources st m [Text] Source #
Parses an RST-style line block and returns a list of strings.
:: (Stream s m Char, UpdateSourcePos s Char, HasReaderOptions st, Monad mf) | |
=> ParsecT s st m (mf [Blocks], [Alignment], [Int]) | header parser |
-> ([Int] -> ParsecT s st m (mf [Blocks])) | row parser |
-> ParsecT s st m sep | line parser |
-> ParsecT s st m end | footer parser |
-> ParsecT s st m (mf Blocks) |
Parse a table using headerParser
, rowParser
,
lineParser
, and footerParser
.
:: (Stream s m Char, UpdateSourcePos s Char, HasReaderOptions st, Monad mf) | |
=> TableNormalization | |
-> ParsecT s st m (mf [Blocks], [Alignment], [Int]) | header parser |
-> ([Int] -> ParsecT s st m (mf [Blocks])) | row parser |
-> ParsecT s st m sep | line parser |
-> ParsecT s st m end | footer parser |
-> ParsecT s st m (mf TableComponents) |
widthsFromIndices :: Int -> [Int] -> [Double] Source #
Calculate relative widths of table columns, based on indices
:: (Monad m, Monad mf, HasLastStrPosition st, HasReaderOptions st) | |
=> ParsecT Sources st m (mf Blocks) | Block list parser |
-> ParsecT Sources st m (mf Blocks) |
Parse a grid table: starts with row of -
on top, then header
(which may be grid), then the rows, which may be grid, separated by
blank lines, and ending with a footer (dashed line followed by blank
line).
:: (Monad m, Monad mf, HasReaderOptions st, HasLastStrPosition st) | |
=> TableNormalization | |
-> ParsecT Sources st m (mf Blocks) | Block list parser |
-> ParsecT Sources st m (mf TableComponents) |
Like
, but returns gridTableWith
TableComponents
instead of a
Table.
data TableComponents Source #
Collection of components making up a Table block.
TableComponents | |
|
data TableNormalization Source #
Whether the table header should be normalized, i.e., whether an header row with only empty cells should be omitted.
toTableComponents :: [Alignment] -> [Double] -> [Blocks] -> [[Blocks]] -> TableComponents Source #
Bundles basic table components into a single value.
toTableComponents' :: TableNormalization -> [Alignment] -> [Double] -> [Blocks] -> [[Blocks]] -> TableComponents Source #
Bundles basic table components into a single value, performing normalizations as necessary.
readWith :: ToSources t => Parsec Sources st a -> st -> t -> Either PandocError a Source #
Parse a string with a given parser and state
:: (Monad m, ToSources t) | |
=> ParsecT Sources st m a | parser |
-> st | initial state |
-> t | input |
-> m (Either PandocError a) |
Removes the ParsecT layer from the monad transformer stack
testStringWith :: Show a => ParsecT Sources ParserState Identity a -> Text -> IO () Source #
Parse a string with parser
(for testing).
guardEnabled :: (Stream s m a, HasReaderOptions st) => Extension -> ParsecT s st m () Source #
Succeed only if the extension is enabled.
guardDisabled :: (Stream s m a, HasReaderOptions st) => Extension -> ParsecT s st m () Source #
Succeed only if the extension is disabled.
updateLastStrPos :: (Stream s m a, HasLastStrPosition st) => ParsecT s st m () Source #
Update the position on which the last string ended.
notAfterString :: (Stream s m a, HasLastStrPosition st) => ParsecT s st m Bool Source #
Whether we are right after the end of a string.
logMessage :: (Stream s m a, HasLogMessages st) => LogMessage -> ParsecT s st m () Source #
Add a log message.
reportLogMessages :: (PandocMonad m, HasLogMessages st) => ParsecT s st m () Source #
Report all the accumulated log messages, according to verbosity level.
data ParserState Source #
Parsing options.
ParserState | |
|
Instances
class HasReaderOptions st where Source #
extractReaderOptions :: st -> ReaderOptions Source #
getOption :: Stream s m t => (ReaderOptions -> b) -> ParsecT s st m b Source #
Instances
HasReaderOptions ParserState Source # | |
Defined in Text.Pandoc.Parsing.State extractReaderOptions :: ParserState -> ReaderOptions Source # getOption :: forall s (m :: Type -> Type) t b. Stream s m t => (ReaderOptions -> b) -> ParsecT s ParserState m b Source # |
class HasIdentifierList st where Source #
extractIdentifierList :: st -> Set Text Source #
updateIdentifierList :: (Set Text -> Set Text) -> st -> st Source #
Instances
HasIdentifierList ParserState Source # | |
Defined in Text.Pandoc.Parsing.State extractIdentifierList :: ParserState -> Set Text Source # updateIdentifierList :: (Set Text -> Set Text) -> ParserState -> ParserState Source # |
class HasMacros st where Source #
extractMacros :: st -> Map Text Macro Source #
updateMacros :: (Map Text Macro -> Map Text Macro) -> st -> st Source #
Instances
HasMacros ParserState Source # | |
Defined in Text.Pandoc.Parsing.State extractMacros :: ParserState -> Map Text Macro Source # updateMacros :: (Map Text Macro -> Map Text Macro) -> ParserState -> ParserState Source # |
class HasLogMessages st where Source #
addLogMessage :: LogMessage -> st -> st Source #
getLogMessages :: st -> [LogMessage] Source #
Instances
HasLogMessages ParserState Source # | |
Defined in Text.Pandoc.Parsing.State addLogMessage :: LogMessage -> ParserState -> ParserState Source # getLogMessages :: ParserState -> [LogMessage] Source # |
class HasLastStrPosition st where Source #
setLastStrPos :: Maybe SourcePos -> st -> st Source #
getLastStrPos :: st -> Maybe SourcePos Source #
Instances
HasLastStrPosition ParserState Source # | |
Defined in Text.Pandoc.Parsing.State setLastStrPos :: Maybe SourcePos -> ParserState -> ParserState Source # |
class HasIncludeFiles st where Source #
getIncludeFiles :: st -> [Text] Source #
addIncludeFile :: Text -> st -> st Source #
dropLatestIncludeFile :: st -> st Source #
Instances
HasIncludeFiles ParserState Source # | |
Defined in Text.Pandoc.Parsing.State getIncludeFiles :: ParserState -> [Text] Source # addIncludeFile :: Text -> ParserState -> ParserState Source # dropLatestIncludeFile :: ParserState -> ParserState Source # |
data HeaderType Source #
SingleHeader Char | Single line of characters underneath |
DoubleHeader Char | Lines of characters above and below |
Instances
Show HeaderType Source # | |
Defined in Text.Pandoc.Parsing.State showsPrec :: Int -> HeaderType -> ShowS # show :: HeaderType -> String # showList :: [HeaderType] -> ShowS # | |
Eq HeaderType Source # | |
Defined in Text.Pandoc.Parsing.State (==) :: HeaderType -> HeaderType -> Bool # (/=) :: HeaderType -> HeaderType -> Bool # |
data ParserContext Source #
ListItemState | Used when running parser on list item contents |
NullState | Default state |
Instances
Show ParserContext Source # | |
Defined in Text.Pandoc.Parsing.State showsPrec :: Int -> ParserContext -> ShowS # show :: ParserContext -> String # showList :: [ParserContext] -> ShowS # | |
Eq ParserContext Source # | |
Defined in Text.Pandoc.Parsing.State (==) :: ParserContext -> ParserContext -> Bool # (/=) :: ParserContext -> ParserContext -> Bool # |
data QuoteContext Source #
InSingleQuote | Used when parsing inside single quotes |
InDoubleQuote | Used when parsing inside double quotes |
NoQuote | Used when not parsing inside quotes |
Instances
Show QuoteContext Source # | |
Defined in Text.Pandoc.Parsing.Capabilities showsPrec :: Int -> QuoteContext -> ShowS # show :: QuoteContext -> String # showList :: [QuoteContext] -> ShowS # | |
Eq QuoteContext Source # | |
Defined in Text.Pandoc.Parsing.Capabilities (==) :: QuoteContext -> QuoteContext -> Bool # (/=) :: QuoteContext -> QuoteContext -> Bool # |
class HasQuoteContext st m where Source #
getQuoteContext :: Stream s m t => ParsecT s st m QuoteContext Source #
withQuoteContext :: QuoteContext -> ParsecT s st m a -> ParsecT s st m a Source #
Instances
Monad m => HasQuoteContext ParserState m Source # | |
Defined in Text.Pandoc.Parsing.State getQuoteContext :: Stream s m t => ParsecT s ParserState m QuoteContext Source # withQuoteContext :: QuoteContext -> ParsecT s ParserState m a -> ParsecT s ParserState m a Source # |
type NoteTable' = Map Text (SourcePos, Future ParserState Blocks) Source #
registerHeader :: (Stream s m a, HasReaderOptions st, HasLogMessages st, HasIdentifierList st) => Attr -> Inlines -> ParsecT s st m Attr Source #
Add header to the list of headers in state, together with its associated identifier. If the identifier is null and the auto_identifiers extension is set, generate a new unique identifier, and update the list of identifiers in state. Issue a warning if an explicit identifier is encountered that duplicates an earlier identifier (explicit or automatically generated).
smartPunctuation :: (HasReaderOptions st, HasLastStrPosition st, HasQuoteContext st m, Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Inlines -> ParsecT s st m Inlines Source #
Parses various ASCII punctuation, quotes, and apostrophe in a smart way, inferring their semantic meaning.
Fails unless the Ext_smart
extension has been enabled.
singleQuoteStart :: (HasLastStrPosition st, HasQuoteContext st m, Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m () Source #
Succeeds if the parser is
- not within single quoted text;
- not directly after a word; and
- looking at an opening single quote char that's not followed by a space.
Gobbles the quote character on success.
singleQuoteEnd :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m () Source #
doubleQuoteStart :: (HasLastStrPosition st, HasQuoteContext st m, Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m () Source #
Succeeds if the parser is
- not within a double quoted text;
- not directly after a word; and
- looking at an opening double quote char that's not followed by a space.
Gobbles the quote character on success.
doubleQuoteEnd :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m () Source #
Parses a closing quote character.
apostrophe :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Inlines Source #
Parses an ASCII apostrophe ('
) or right single quotation mark and
returns a RIGHT SINGLE QUOtatiON MARK character.
doubleCloseQuote :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Inlines Source #
Parses an ASCII quotation mark character and returns a RIGHT DOUBLE QUOTATION MARK.
ellipses :: (Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Inlines Source #
Parses three dots as HORIZONTAL ELLIPSIS.
dash :: (HasReaderOptions st, Stream s m Char, UpdateSourcePos s Char) => ParsecT s st m Inlines Source #
Parses two hyphens as EN DASH and three as EM DASH.
If the extension
is enabled, then two hyphens are
parsed as EM DASH, and one hyphen is parsed as EN DASH if it is
followed by a digit.Ext_old_dashes
:: (Stream s m Char, UpdateSourcePos s Char, HasLastStrPosition st) | |
=> Bool | If True, allow expanded @{..} syntax. |
-> ParsecT s st m (Bool, Text) |
data ParsecT s u (m :: Type -> Type) a #
ParserT monad transformer and Parser type
ParsecT s u m a
is a parser with stream type s
, user state type u
,
underlying monad m
and return type a
. Parsec is strict in the user state.
If this is undesirable, simply use a data type like data Box a = Box a
and
the state type Box YourStateType
to add a level of indirection.
Instances
MonadError e m => MonadError e (ParsecT s u m) | |
Defined in Text.Parsec.Prim throwError :: e -> ParsecT s u m a # catchError :: ParsecT s u m a -> (e -> ParsecT s u m a) -> ParsecT s u m a # | |
MonadReader r m => MonadReader r (ParsecT s u m) | |
MonadState s m => MonadState s (ParsecT s' u m) | |
MonadTrans (ParsecT s u) | |
Defined in Text.Parsec.Prim | |
MonadFail (ParsecT s u m) | Since: parsec-3.1.12.0 |
Defined in Text.Parsec.Prim | |
MonadIO m => MonadIO (ParsecT s u m) | |
Defined in Text.Parsec.Prim | |
Alternative (ParsecT s u m) | |
Applicative (ParsecT s u m) | |
Defined in Text.Parsec.Prim pure :: a -> ParsecT s u m a # (<*>) :: ParsecT s u m (a -> b) -> ParsecT s u m a -> ParsecT s u m b # liftA2 :: (a -> b -> c) -> ParsecT s u m a -> ParsecT s u m b -> ParsecT s u m c # (*>) :: ParsecT s u m a -> ParsecT s u m b -> ParsecT s u m b # (<*) :: ParsecT s u m a -> ParsecT s u m b -> ParsecT s u m a # | |
Functor (ParsecT s u m) | |
Monad (ParsecT s u m) | |
MonadPlus (ParsecT s u m) | |
MonadCont m => MonadCont (ParsecT s u m) | |
PandocMonad m => PandocMonad (ParsecT s st m) Source # | |
Defined in Text.Pandoc.Class.PandocMonad lookupEnv :: Text -> ParsecT s st m (Maybe Text) Source # getCurrentTime :: ParsecT s st m UTCTime Source # getCurrentTimeZone :: ParsecT s st m TimeZone Source # newStdGen :: ParsecT s st m StdGen Source # newUniqueHash :: ParsecT s st m Int Source # openURL :: Text -> ParsecT s st m (ByteString, Maybe MimeType) Source # readFileLazy :: FilePath -> ParsecT s st m ByteString Source # readFileStrict :: FilePath -> ParsecT s st m ByteString Source # readStdinStrict :: ParsecT s st m ByteString Source # glob :: String -> ParsecT s st m [FilePath] Source # fileExists :: FilePath -> ParsecT s st m Bool Source # getDataFileName :: FilePath -> ParsecT s st m FilePath Source # getModificationTime :: FilePath -> ParsecT s st m UTCTime Source # getCommonState :: ParsecT s st m CommonState Source # putCommonState :: CommonState -> ParsecT s st m () Source # getsCommonState :: (CommonState -> a) -> ParsecT s st m a Source # modifyCommonState :: (CommonState -> CommonState) -> ParsecT s st m () Source # logOutput :: LogMessage -> ParsecT s st m () Source # | |
(Monoid a, Semigroup (ParsecT s u m a)) => Monoid (ParsecT s u m a) | The Since: parsec-3.1.12 |
Semigroup a => Semigroup (ParsecT s u m a) | The (many $ char The above will parse a string like (many $ char Since: parsec-3.1.12 |
Reader monad wrapping the parser state. This is used to possibly delay evaluation until all relevant information has been parsed and made available in the parser state.
Future | |
|
trimInlinesF :: Future s Inlines -> Future s Inlines Source #
Remove whitespace from start and end; just like
,
but lifted into the trimInlines
Future
type.
token :: Stream s m t => (t -> Text) -> (t -> SourcePos) -> (t -> Maybe a) -> ParsecT s st m a Source #
extractIdClass :: Attr -> Attr Source #
:: (PandocMonad m, HasIncludeFiles st) | |
=> ParsecT a st m b | parser to apply |
-> (Text -> a) | convert Text to stream type |
-> [FilePath] | search path (directories) |
-> FilePath | path of file to include |
-> Maybe Int | start line (negative counts from end) |
-> Maybe Int | end line (negative counts from end) |
-> ParsecT a st m b |
Re-exports from Text.Parsec
class Monad m => Stream s (m :: Type -> Type) t | s -> t where #
An instance of Stream
has stream type s
, underlying monad m
and token type t
determined by the stream
Some rough guidelines for a "correct" instance of Stream:
- unfoldM uncons gives the [t] corresponding to the stream
- A
Stream
instance is responsible for maintaining the "position within the stream" in the stream states
. This is trivial unless you are using the monad in a non-trivial way.
Instances
Monad m => Stream ByteString m Char | |
Defined in Text.Parsec.Prim uncons :: ByteString -> m (Maybe (Char, ByteString)) # | |
Monad m => Stream ByteString m Char | |
Defined in Text.Parsec.Prim uncons :: ByteString -> m (Maybe (Char, ByteString)) # | |
Monad m => Stream Sources m Char Source # | |
Monad m => Stream Text m Char | |
Monad m => Stream Text m Char | |
Monad m => Stream [tok] m tok | |
Defined in Text.Parsec.Prim |
runParser :: Stream s Identity t => Parsec s u a -> u -> SourceName -> s -> Either ParseError a #
The most general way to run a parser over the Identity monad. runParser p state filePath
input
runs parser p
on the input list of tokens input
,
obtained from source filePath
with the initial user state st
.
The filePath
is only used in error messages and may be the empty
string. Returns either a ParseError
(Left
) or a
value of type a
(Right
).
parseFromFile p fname = do{ input <- readFile fname ; return (runParser p () fname input) }
runParserT :: Stream s m t => ParsecT s u m a -> u -> SourceName -> s -> m (Either ParseError a) #
The most general way to run a parser. runParserT p state filePath
input
runs parser p
on the input list of tokens input
,
obtained from source filePath
with the initial user state st
.
The filePath
is only used in error messages and may be the empty
string. Returns a computation in the underlying monad m
that return either a ParseError
(Left
) or a
value of type a
(Right
).
parse :: Stream s Identity t => Parsec s () a -> SourceName -> s -> Either ParseError a #
parse p filePath input
runs a parser p
over Identity without user
state. The filePath
is only used in error messages and may be the
empty string. Returns either a ParseError
(Left
)
or a value of type a
(Right
).
main = case (parse numbers "" "11, 2, 43") of Left err -> print err Right xs -> print (sum xs) numbers = commaSep integer
:: forall s (m :: Type -> Type) t a u. Stream s m t | |
=> (t -> String) | Token pretty-printing function. |
-> (SourcePos -> t -> s -> SourcePos) | Next position calculating function. |
-> (t -> Maybe a) | Matching function for the token to parse. |
-> ParsecT s u m a |
The parser tokenPrim showTok nextPos testTok
accepts a token t
with result x
when the function testTok t
returns
. The
token can be shown using Just
xshowTok t
. The position of the next
token should be returned when nextPos
is called with the current
source position pos
, the current token t
and the rest of the
tokens toks
, nextPos pos t toks
.
This is the most primitive combinator for accepting tokens. For
example, the char
parser could be implemented as:
char c = tokenPrim showChar nextPos testChar where showChar x = "'" ++ x ++ "'" testChar x = if x == c then Just x else Nothing nextPos pos x xs = updatePosChar pos x
anyToken :: forall s (m :: Type -> Type) t u. (Stream s m t, Show t) => ParsecT s u m t #
The parser anyToken
accepts any kind of token. It is for example
used to implement eof
. Returns the accepted token.
setInput :: forall (m :: Type -> Type) s u. Monad m => s -> ParsecT s u m () #
setInput input
continues parsing with input
. The getInput
and
setInput
functions can for example be used to deal with #include
files.
unexpected :: forall s (m :: Type -> Type) t u a. Stream s m t => String -> ParsecT s u m a #
The parser unexpected msg
always fails with an unexpected error
message msg
without consuming any input.
The parsers fail
, (<?>
) and unexpected
are the three parsers
used to generate error messages. Of these, only (<?>
) is commonly
used. For an example of the use of unexpected
, see the definition
of notFollowedBy
.
skipMany :: forall s u (m :: Type -> Type) a. ParsecT s u m a -> ParsecT s u m () #
skipMany p
applies the parser p
zero or more times, skipping
its result.
spaces = skipMany space
skipMany1 :: forall s (m :: Type -> Type) t u a. Stream s m t => ParsecT s u m a -> ParsecT s u m () #
skipMany1 p
applies the parser p
one or more times, skipping
its result.
count :: forall s (m :: Type -> Type) t u a. Stream s m t => Int -> ParsecT s u m a -> ParsecT s u m [a] #
count n p
parses n
occurrences of p
. If n
is smaller or
equal to zero, the parser equals to return []
. Returns a list of
n
values returned by p
.
eof :: forall s (m :: Type -> Type) t u. (Stream s m t, Show t) => ParsecT s u m () #
This parser only succeeds at the end of the input. This is not a
primitive parser but it is defined using notFollowedBy
.
eof = notFollowedBy anyToken <?> "end of input"
lookAhead :: forall s (m :: Type -> Type) t u a. Stream s m t => ParsecT s u m a -> ParsecT s u m a #
lookAhead p
parses p
without consuming any input.
If p
fails and consumes some input, so does lookAhead
. Combine with try
if this is undesirable.
notFollowedBy :: forall s (m :: Type -> Type) t a u. (Stream s m t, Show a) => ParsecT s u m a -> ParsecT s u m () #
notFollowedBy p
only succeeds when parser p
fails. This parser
does not consume any input. This parser can be used to implement the
'longest match' rule. For example, when recognizing keywords (for
example let
), we want to make sure that a keyword is not followed
by a legal identifier character, in which case the keyword is
actually an identifier (for example lets
). We can program this
behaviour as follows:
keywordLet = try (do{ string "let" ; notFollowedBy alphaNum })
NOTE: Currently, notFollowedBy
exhibits surprising behaviour
when applied to a parser p
that doesn't consume any input;
specifically
is not equivalent tonotFollowedBy
.notFollowedBy
lookAhead
, and
never fails.notFollowedBy
eof
See haskell/parsec#8 for more details.
many :: forall s u (m :: Type -> Type) a. ParsecT s u m a -> ParsecT s u m [a] #
many p
applies the parser p
zero or more times. Returns a
list of the returned values of p
.
identifier = do{ c <- letter ; cs <- many (alphaNum <|> char '_') ; return (c:cs) }
many1 :: forall s (m :: Type -> Type) t u a. Stream s m t => ParsecT s u m a -> ParsecT s u m [a] #
many1 p
applies the parser p
one or more times. Returns a
list of the returned values of p
.
word = many1 letter
manyTill :: forall s (m :: Type -> Type) t u a end. Stream s m t => ParsecT s u m a -> ParsecT s u m end -> ParsecT s u m [a] #
manyTill p end
applies parser p
zero or more times until
parser end
succeeds. Returns the list of values returned by p
.
This parser can be used to scan comments:
simpleComment = do{ string "<!--" ; manyTill anyChar (try (string "-->")) }
Note the overlapping parsers anyChar
and string "-->"
, and
therefore the use of the try
combinator.
(<|>) :: forall s u (m :: Type -> Type) a. ParsecT s u m a -> ParsecT s u m a -> ParsecT s u m a infixr 1 #
This combinator implements choice. The parser p <|> q
first
applies p
. If it succeeds, the value of p
is returned. If p
fails without consuming any input, parser q
is tried. This
combinator is defined equal to the mplus
member of the MonadPlus
class and the (<|>
) member of Alternative
.
The parser is called predictive since q
is only tried when
parser p
didn't consume any input (i.e.. the look ahead is 1).
This non-backtracking behaviour allows for both an efficient
implementation of the parser combinators and the generation of good
error messages.
(<?>) :: forall s u (m :: Type -> Type) a. ParsecT s u m a -> String -> ParsecT s u m a infix 0 #
The parser p <?> msg
behaves as parser p
, but whenever the
parser p
fails without consuming any input, it replaces expect
error messages with the expect error message msg
.
This is normally used at the end of a set alternatives where we want
to return an error message in terms of a higher level construct
rather than returning all possible characters. For example, if the
expr
parser from the try
example would fail, the error
message is: '...: expecting expression'. Without the (<?>)
combinator, the message would be like '...: expecting "let" or
letter', which is less friendly.
choice :: forall s (m :: Type -> Type) t u a. Stream s m t => [ParsecT s u m a] -> ParsecT s u m a #
choice ps
tries to apply the parsers in the list ps
in order,
until one of them succeeds. Returns the value of the succeeding
parser.
try :: forall s u (m :: Type -> Type) a. ParsecT s u m a -> ParsecT s u m a #
The parser try p
behaves like parser p
, except that it
pretends that it hasn't consumed any input when an error occurs.
This combinator is used whenever arbitrary look ahead is needed.
Since it pretends that it hasn't consumed any input when p
fails,
the (<|>
) combinator will try its second alternative even when the
first parser failed while consuming input.
The try
combinator can for example be used to distinguish
identifiers and reserved words. Both reserved words and identifiers
are a sequence of letters. Whenever we expect a certain reserved
word where we can also expect an identifier we have to use the try
combinator. Suppose we write:
expr = letExpr <|> identifier <?> "expression" letExpr = do{ string "let"; ... } identifier = many1 letter
If the user writes "lexical", the parser fails with: unexpected
'x', expecting 't' in "let"
. Indeed, since the (<|>
) combinator
only tries alternatives when the first alternative hasn't consumed
input, the identifier
parser is never tried (because the prefix
"le" of the string "let"
parser is already consumed). The
right behaviour can be obtained by adding the try
combinator:
expr = letExpr <|> identifier <?> "expression" letExpr = do{ try (string "let"); ... } identifier = many1 letter
sepBy :: forall s (m :: Type -> Type) t u a sep. Stream s m t => ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a] #
sepBy p sep
parses zero or more occurrences of p
, separated
by sep
. Returns a list of values returned by p
.
commaSep p = p `sepBy` (symbol ",")
sepBy1 :: forall s (m :: Type -> Type) t u a sep. Stream s m t => ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a] #
sepBy1 p sep
parses one or more occurrences of p
, separated
by sep
. Returns a list of values returned by p
.
sepEndBy :: forall s (m :: Type -> Type) t u a sep. Stream s m t => ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a] #
sepEndBy p sep
parses zero or more occurrences of p
,
separated and optionally ended by sep
, ie. haskell style
statements. Returns a list of values returned by p
.
haskellStatements = haskellStatement `sepEndBy` semi
sepEndBy1 :: forall s (m :: Type -> Type) t u a sep. Stream s m t => ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a] #
sepEndBy1 p sep
parses one or more occurrences of p
,
separated and optionally ended by sep
. Returns a list of values
returned by p
.
endBy :: forall s (m :: Type -> Type) t u a sep. Stream s m t => ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a] #
endBy p sep
parses zero or more occurrences of p
, separated
and ended by sep
. Returns a list of values returned by p
.
cStatements = cStatement `endBy` semi
endBy1 :: forall s (m :: Type -> Type) t u a sep. Stream s m t => ParsecT s u m a -> ParsecT s u m sep -> ParsecT s u m [a] #
endBy1 p sep
parses one or more occurrences of p
, separated
and ended by sep
. Returns a list of values returned by p
.
option :: forall s (m :: Type -> Type) t a u. Stream s m t => a -> ParsecT s u m a -> ParsecT s u m a #
option x p
tries to apply parser p
. If p
fails without
consuming input, it returns the value x
, otherwise the value
returned by p
.
priority = option 0 (do{ d <- digit ; return (digitToInt d) })
optional :: forall s (m :: Type -> Type) t u a. Stream s m t => ParsecT s u m a -> ParsecT s u m () #
optional p
tries to apply parser p
. It will parse p
or nothing.
It only fails if p
fails after consuming input. It discards the result
of p
.
optionMaybe :: forall s (m :: Type -> Type) t u a. Stream s m t => ParsecT s u m a -> ParsecT s u m (Maybe a) #
getState :: forall (m :: Type -> Type) s u. Monad m => ParsecT s u m u #
Returns the current user state.
setState :: forall (m :: Type -> Type) u s. Monad m => u -> ParsecT s u m () #
An alias for putState for backwards compatibility.
updateState :: forall (m :: Type -> Type) u s. Monad m => (u -> u) -> ParsecT s u m () #
An alias for modifyState for backwards compatibility.
The abstract data type SourcePos
represents source positions. It
contains the name of the source (i.e. file name), a line number and
a column number. SourcePos
is an instance of the Show
, Eq
and
Ord
class.
Instances
Data SourcePos | |
Defined in Text.Parsec.Pos gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourcePos -> c SourcePos # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourcePos # toConstr :: SourcePos -> Constr # dataTypeOf :: SourcePos -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c SourcePos) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourcePos) # gmapT :: (forall b. Data b => b -> b) -> SourcePos -> SourcePos # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourcePos -> r # gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourcePos -> r # gmapQ :: (forall d. Data d => d -> u) -> SourcePos -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> SourcePos -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourcePos -> m SourcePos # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourcePos -> m SourcePos # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourcePos -> m SourcePos # | |
Show SourcePos | |
Eq SourcePos | |
Ord SourcePos | |
Defined in Text.Parsec.Pos |
type SourceName = String #
updatePosString :: SourcePos -> String -> SourcePos #
The expression updatePosString pos s
updates the source position
pos
by calling updatePosChar
on every character in s
, ie.
foldl updatePosChar pos string
.
getPosition :: forall (m :: Type -> Type) s u. Monad m => ParsecT s u m SourcePos #
Returns the current source position. See also SourcePos
.
setPosition :: forall (m :: Type -> Type) s u. Monad m => SourcePos -> ParsecT s u m () #
setPosition pos
sets the current source position to pos
.
sourceName :: SourcePos -> SourceName #
Extracts the name of the source from a source position.
setSourceName :: SourcePos -> SourceName -> SourcePos #
Set the name of the source.
sourceColumn :: SourcePos -> Column #
Extracts the column number from a source position.
sourceLine :: SourcePos -> Line #
Extracts the line number from a source position.
setSourceColumn :: SourcePos -> Column -> SourcePos #
Set the column number of a source position.
setSourceLine :: SourcePos -> Line -> SourcePos #
Set the line number of a source position.
incSourceColumn :: SourcePos -> Column -> SourcePos #
Increments the column number of a source position.
incSourceLine :: SourcePos -> Line -> SourcePos #
Increments the line number of a source position.
newPos :: SourceName -> Line -> Column -> SourcePos #
Create a new SourcePos
with the given source name,
line number and column number.
initialPos :: SourceName -> SourcePos #
Create a new SourcePos
with the given source name,
and line number and column number set to 1, the upper left.
data ParseError #
The abstract data type ParseError
represents parse errors. It
provides the source position (SourcePos
) of the error
and a list of error messages (Message
). A ParseError
can be returned by the function parse
. ParseError
is an
instance of the Show
and Eq
classes.
Instances
Show ParseError | |
Defined in Text.Parsec.Error showsPrec :: Int -> ParseError -> ShowS # show :: ParseError -> String # showList :: [ParseError] -> ShowS # | |
Eq ParseError | |
Defined in Text.Parsec.Error (==) :: ParseError -> ParseError -> Bool # (/=) :: ParseError -> ParseError -> Bool # |
errorMessages :: ParseError -> [Message] #
Extracts the list of error messages from the parse error
messageString :: Message -> String #
Extract the message string from an error message