pandoc-2.0.6: Conversion between markup formats

CopyrightCopyright (C) 2013-2017 John MacFarlane
LicenseGNU GPL, version 2 or above
MaintainerJohn MacFarlane <jgm@berkeley.edu>
Stabilityalpha
Portabilityportable
Safe HaskellNone
LanguageHaskell98

Text.Pandoc.Writers.Shared

Description

Shared utility functions for pandoc writers.

Synopsis

Documentation

metaToJSON :: (Functor m, Monad m, ToJSON a) => WriterOptions -> ([Block] -> m a) -> ([Inline] -> m a) -> Meta -> m Value Source #

Create JSON value for template from a Meta and an association list of variables, specified at the command line or in the writer. Variables overwrite metadata fields with the same names. If multiple variables are set with the same name, a list is assigned. Does nothing if writerTemplate is Nothing.

metaToJSON' :: (Functor m, Monad m, ToJSON a) => ([Block] -> m a) -> ([Inline] -> m a) -> Meta -> m Value Source #

Like metaToJSON, but does not include variables and is not sensitive to writerTemplate.

addVariablesToJSON :: WriterOptions -> Value -> Value Source #

Add variables to JSON object, replacing any existing values. Also include meta-json, a field containing a string representation of the original JSON object itself, prior to addition of variables.

getField :: FromJSON a => String -> Value -> Maybe a Source #

Retrieve a field value from a JSON object.

setField :: ToJSON a => String -> a -> Value -> Value Source #

Set a field of a JSON object. If the field already has a value, convert it into a list with the new value appended to the old value(s). This is a utility function to be used in preparing template contexts.

resetField :: ToJSON a => String -> a -> Value -> Value Source #

Reset a field of a JSON object. If the field already has a value, the new value replaces it. This is a utility function to be used in preparing template contexts.

defField :: ToJSON a => String -> a -> Value -> Value Source #

Set a field of a JSON object if it currently has no value. If it has a value, do nothing. This is a utility function to be used in preparing template contexts.

gridTable Source #

Arguments

:: Monad m 
=> WriterOptions 
-> (WriterOptions -> [Block] -> m Doc) 
-> Bool

headless

-> [Alignment] 
-> [Double] 
-> [[Block]] 
-> [[[Block]]] 
-> m Doc