2007-07-07 07:25:44 +02:00
|
|
|
Name: pandoc
|
2007-06-17 18:16:57 +02:00
|
|
|
Version: 0.4
|
2006-10-17 16:22:29 +02:00
|
|
|
License: GPL
|
2006-12-20 04:23:00 +01:00
|
|
|
License-File: COPYING
|
2007-07-07 23:57:18 +02:00
|
|
|
Copyright: (c) 2006-2007 John MacFarlane
|
|
|
|
Author: John MacFarlane <jgm@berkeley.edu>
|
|
|
|
Maintainer: John MacFarlane <jgm@berkeley.edu>
|
2006-12-20 21:20:10 +01:00
|
|
|
Stability: alpha
|
2006-10-17 16:22:29 +02:00
|
|
|
Homepage: http://sophos.berkeley.edu/macfarlane/pandoc
|
2007-06-17 18:16:57 +02:00
|
|
|
Package-URL: http://pandoc.googlecode.com/files/pandoc-0.4.tar.gz
|
2006-10-17 16:22:29 +02:00
|
|
|
Category: Text
|
2006-12-20 20:53:56 +01:00
|
|
|
Tested-With: GHC
|
2007-07-16 03:51:03 +02:00
|
|
|
Synopsis: Conversion between markup formats
|
2007-07-12 10:29:36 +02:00
|
|
|
Description: Pandoc is a Haskell library for converting from one markup
|
|
|
|
format to another, and a command-line tool that uses
|
|
|
|
this library. It can read markdown and (subsets of)
|
|
|
|
reStructuredText, HTML, and LaTeX, and it can write
|
2007-07-15 04:58:30 +02:00
|
|
|
markdown, reStructuredText, HTML, LaTeX, ConTeXt, Docbook,
|
|
|
|
RTF, groff man pages, and S5 HTML slide shows.
|
2007-07-12 10:29:36 +02:00
|
|
|
.
|
|
|
|
Pandoc extends standard markdown syntax with footnotes,
|
|
|
|
embedded LaTeX, definition lists, tables, and other
|
|
|
|
features. A compatibility mode is provided for those
|
|
|
|
who need a drop-in replacement for Markdown.pl.
|
|
|
|
.
|
|
|
|
In contrast to existing tools for converting markdown
|
|
|
|
to HTML, which use regex substitutions, pandoc has
|
|
|
|
a modular design: it consists of a set of readers,
|
|
|
|
which parse text in a given format and produce a native
|
|
|
|
representation of the document, and a set of writers,
|
|
|
|
which convert this native representation into a target
|
|
|
|
format. Thus, adding an input or output format requires
|
|
|
|
only adding a reader or writer.
|
2007-06-17 18:16:57 +02:00
|
|
|
Build-Depends: base, parsec, xhtml, mtl, regex-compat
|
|
|
|
Hs-Source-Dirs: src
|
2007-07-09 05:39:25 +02:00
|
|
|
Exposed-Modules: Text.Pandoc,
|
2006-10-17 16:22:29 +02:00
|
|
|
Text.Pandoc.ASCIIMathML,
|
2007-07-09 05:39:25 +02:00
|
|
|
Text.Pandoc.Blocks,
|
2006-12-20 04:23:00 +01:00
|
|
|
Text.Pandoc.Definition,
|
2007-01-02 01:40:12 +01:00
|
|
|
Text.Pandoc.Entities,
|
2007-07-09 05:39:25 +02:00
|
|
|
Text.Pandoc.ParserCombinators,
|
2006-12-20 04:23:00 +01:00
|
|
|
Text.Pandoc.Shared,
|
|
|
|
Text.Pandoc.UTF8,
|
2007-07-12 10:29:36 +02:00
|
|
|
Text.Pandoc.Readers.HTML,
|
|
|
|
Text.Pandoc.Readers.LaTeX,
|
|
|
|
Text.Pandoc.Readers.Markdown,
|
|
|
|
Text.Pandoc.Readers.RST,
|
2006-12-20 04:23:00 +01:00
|
|
|
Text.Pandoc.Writers.DefaultHeaders,
|
2007-01-01 22:09:38 +01:00
|
|
|
Text.Pandoc.Writers.Docbook,
|
2006-12-20 04:23:00 +01:00
|
|
|
Text.Pandoc.Writers.HTML,
|
2007-07-09 05:39:25 +02:00
|
|
|
Text.Pandoc.Writers.LaTeX,
|
2007-07-15 04:56:34 +02:00
|
|
|
Text.Pandoc.Writers.ConTeXt,
|
2007-07-01 00:43:14 +02:00
|
|
|
Text.Pandoc.Writers.Man,
|
2006-12-20 04:23:00 +01:00
|
|
|
Text.Pandoc.Writers.Markdown,
|
|
|
|
Text.Pandoc.Writers.RST,
|
|
|
|
Text.Pandoc.Writers.RTF,
|
2007-07-12 10:29:36 +02:00
|
|
|
Text.Pandoc.Writers.S5
|
2007-06-17 18:16:57 +02:00
|
|
|
Ghc-Options: -O0
|
2006-10-17 16:22:29 +02:00
|
|
|
|
|
|
|
Executable: pandoc
|
2007-06-17 18:16:57 +02:00
|
|
|
Hs-Source-Dirs: src
|
2006-10-17 16:22:29 +02:00
|
|
|
Main-Is: Main.hs
|
2007-06-17 18:16:57 +02:00
|
|
|
Ghc-Options: -O0
|