Haddock comment improvements.

This commit is contained in:
John MacFarlane 2011-01-21 09:00:05 -08:00
parent 9bb5b54102
commit bfbc289871
2 changed files with 7 additions and 2 deletions

View file

@ -25,7 +25,8 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Stability : alpha
Portability : portable
Conversion of native 'Pandoc' formatted text to a 'Pandoc' document.
Conversion of a string representation of a pandoc type (@Pandoc@,
@[Block]@, @Block@, @[Inline]@, or @Inline@) to a @Pandoc@ document.
-}
module Text.Pandoc.Readers.Native ( readNative ) where

View file

@ -26,7 +26,11 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Stability : alpha
Portability : portable
Utility functions and definitions used by the various Pandoc modules.
Conversion of a 'Pandoc' document to a string representation.
Note: If @writerStandalone@ is @False@, only the document body
is represented; otherwise, the full 'Pandoc' document, including the
metadata.
-}
module Text.Pandoc.Writers.Native ( writeNative )
where