pandoc-1.11: Conversion between markup formats

Portabilityportable
Stabilityalpha
MaintainerJohn MacFarlane <jgm@berkeley.edu>
Safe HaskellNone

Text.Pandoc.Readers.Markdown

Description

Conversion of markdown-formatted plain text to Pandoc document.

Synopsis

Documentation

readMarkdownSource

Arguments

:: ReaderOptions

Reader options

-> String

String to parse (assuming '\n' line endings)

-> Pandoc 

Read markdown from an input string and return a Pandoc document.

readMarkdownWithWarningsSource

Arguments

:: ReaderOptions

Reader options

-> String

String to parse (assuming '\n' line endings)

-> (Pandoc, [String]) 

Read markdown from an input string and return a pair of a Pandoc document and a list of warnings.