pandoc-citeproc-0.3: Supports using pandoc with citeproc

Portabilityportable
Stabilityunstable
MaintainerAndrea Rossato <andrea.rossato@unitn.it>
Safe HaskellNone

Text.CSL.Pickle

Description

This module is mostly copied from Text.XML.HXT.Arrow.Pickle.Xml which is an adaptation of the pickler combinators developed by Andrew Kennedy.

See: http://research.microsoft.com/~akenn/fun/picklercombinators.pdf

Synopsis

Documentation

data St Source

Constructors

St 

Fields

attributes :: [Attr]
 
contents :: [Content]
 

data PU a Source

Constructors

PU 

Fields

appPickle :: (a, St) -> St
 
appUnPickle :: St -> (Maybe a, St)
 

xpPrim :: (Read a, Show a) => PU aSource

xpLift :: a -> PU aSource

xpCondSeq :: PU b -> (b -> a) -> PU a -> (a -> PU b) -> PU bSource

xpSeq :: (b -> a) -> PU a -> (a -> PU b) -> PU bSource

xpChoice :: PU b -> PU a -> (a -> PU b) -> PU bSource

xpWrap :: (a -> b, b -> a) -> PU a -> PU bSource

xpDefault :: Eq a => a -> PU a -> PU aSource

xpAlt :: (a -> Int) -> [PU a] -> PU aSource

xpList :: PU a -> PU [a]Source

xpWrapMaybe :: (a -> Maybe b, b -> a) -> PU a -> PU bSource

xpPair :: PU a -> PU b -> PU (a, b)Source

xpTriple :: PU a -> PU b -> PU c -> PU (a, b, c)Source

xp4Tuple :: PU a -> PU b -> PU c -> PU d -> PU (a, b, c, d)Source

xp5Tuple :: PU a -> PU b -> PU c -> PU d -> PU e -> PU (a, b, c, d, e)Source

xp6Tuple :: PU a -> PU b -> PU c -> PU d -> PU e -> PU f -> PU (a, b, c, d, e, f)Source

xpElem :: String -> PU a -> PU aSource

xpIElem :: String -> PU a -> PU aSource

A pickler for interleaved elements.

xpAttr :: String -> PU a -> PU aSource

uncurry3 :: (a -> b -> c -> d) -> (a, b, c) -> dSource

uncurry4 :: (a -> b -> c -> d -> e) -> (a, b, c, d) -> eSource

uncurry5 :: (a -> b -> c -> d -> e -> f) -> (a, b, c, d, e) -> fSource

readXmlFile :: Show a => PU a -> FilePath -> IO aSource