Copyright | Copyright (C) 2011-2017 John MacFarlane |
---|---|
License | GNU GPL, version 2 or above |
Maintainer | John MacFarlane <jgm@berkeley.edu> |
Stability | alpha |
Portability | portable |
Safe Haskell | None |
Language | Haskell98 |
Conversion of a string representation of a pandoc type (Pandoc
,
[Block]
, Block
, [Inline]
, or Inline
) to a Pandoc
document.
- readNative :: PandocMonad m => ReaderOptions -> Text -> m Pandoc
Documentation
:: PandocMonad m | |
=> ReaderOptions | |
-> Text | String to parse (assuming |
-> m Pandoc |
Read native formatted text and return a Pandoc document. The input may be a full pandoc document, a block list, a block, an inline list, or an inline. Thus, for example,
Str "hi"
will be treated as if it were
Pandoc nullMeta [Plain [Str "hi"]]