Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. module Text.Pandoc.PDF

    Conversion of LaTeX documents to PDF.

  2. module Text.Pandoc.Parsing

    A utility library with parsers used in pandoc readers.

  3. data ParseError

    pandoc Text.Pandoc.Parsing

    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.

  4. type Parsec s u = ParsecT s u Identity

    pandoc Text.Pandoc.Parsing

    No documentation available.

  5. data ParsecT s u (m :: Type -> Type) a

    pandoc Text.Pandoc.Parsing

    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.

  6. data ParserContext

    pandoc Text.Pandoc.Parsing

    No documentation available.

  7. data ParserState

    pandoc Text.Pandoc.Parsing

    Parsing options.

  8. ParserState :: ReaderOptions -> ParserContext -> QuoteContext -> Bool -> Bool -> Maybe SourcePos -> KeyTable -> KeyTable -> SubstTable -> NoteTable -> NoteTable' -> Set Text -> Bool -> Int -> Meta -> Future ParserState Meta -> Map Text Text -> [HeaderType] -> Set Text -> Int -> Map Text Int -> Map Text Macro -> Text -> Maybe Text -> Map Text (Text, Maybe Text, Attr) -> Maybe Inlines -> Maybe Text -> Int -> [Text] -> [LogMessage] -> Bool -> ParserState

    pandoc Text.Pandoc.Parsing

    No documentation available.

  9. module Text.Pandoc.Process

    ByteString variant of readProcessWithExitCode.

  10. module Text.Pandoc.Readers.Pod

    Conversion of Pod to Pandoc documents

Page 379 of many | Previous | Next