2007-07-07 07:25:44 +02:00
|
|
|
Name: pandoc
|
2015-03-28 21:48:53 +01:00
|
|
|
Version: 1.14
|
2012-07-26 20:51:37 +02:00
|
|
|
Cabal-Version: >= 1.10
|
2008-08-09 18:51:08 +02:00
|
|
|
Build-Type: Custom
|
2006-10-17 16:22:29 +02:00
|
|
|
License: GPL
|
2006-12-20 04:23:00 +01:00
|
|
|
License-File: COPYING
|
2015-04-26 19:18:29 +02:00
|
|
|
Copyright: (c) 2006-2015 John MacFarlane
|
2007-07-07 23:57:18 +02:00
|
|
|
Author: John MacFarlane <jgm@berkeley.edu>
|
|
|
|
Maintainer: John MacFarlane <jgm@berkeley.edu>
|
2011-06-10 03:12:12 +02:00
|
|
|
Bug-Reports: https://github.com/jgm/pandoc/issues
|
2006-12-20 21:20:10 +01:00
|
|
|
Stability: alpha
|
2007-09-13 19:26:01 +02:00
|
|
|
Homepage: http://johnmacfarlane.net/pandoc
|
2006-10-17 16:22:29 +02:00
|
|
|
Category: Text
|
2014-05-16 18:50:30 +02:00
|
|
|
Tested-With: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.2
|
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
|
2012-05-13 05:24:09 +02:00
|
|
|
this library. It can read markdown and (subsets of) HTML,
|
2014-10-31 20:07:19 +01:00
|
|
|
reStructuredText, LaTeX, DocBook, MediaWiki markup, TWiki
|
|
|
|
markup, Haddock markup, OPML, Emacs Org-Mode, txt2tags and
|
|
|
|
Textile, and it can write markdown, reStructuredText, XHTML,
|
|
|
|
HTML 5, LaTeX, ConTeXt, DocBook, OPML, OpenDocument, ODT,
|
|
|
|
Word docx, RTF, MediaWiki, DokuWiki, Textile, groff man
|
|
|
|
pages, plain text, Emacs Org-Mode, AsciiDoc, Haddock markup,
|
|
|
|
EPUB (v2 and v3), FictionBook2, InDesign ICML, and several
|
|
|
|
kinds of HTML/javascript slide shows (S5, Slidy, Slideous,
|
|
|
|
DZSlides, reveal.js).
|
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.
|
2010-03-18 03:39:23 +01:00
|
|
|
Data-Files:
|
2009-12-31 02:11:13 +01:00
|
|
|
-- templates
|
2014-08-13 20:16:50 +02:00
|
|
|
data/templates/default.html
|
|
|
|
data/templates/default.html5
|
|
|
|
data/templates/default.docbook
|
|
|
|
data/templates/default.beamer
|
|
|
|
data/templates/default.opendocument
|
|
|
|
data/templates/default.icml
|
|
|
|
data/templates/default.opml
|
|
|
|
data/templates/default.latex
|
|
|
|
data/templates/default.context
|
|
|
|
data/templates/default.texinfo
|
|
|
|
data/templates/default.man
|
|
|
|
data/templates/default.markdown
|
|
|
|
data/templates/default.rst
|
|
|
|
data/templates/default.plain
|
|
|
|
data/templates/default.mediawiki
|
2014-08-14 01:56:57 +02:00
|
|
|
data/templates/default.dokuwiki
|
2014-08-13 20:16:50 +02:00
|
|
|
data/templates/default.rtf
|
|
|
|
data/templates/default.s5
|
|
|
|
data/templates/default.slidy
|
|
|
|
data/templates/default.slideous
|
|
|
|
data/templates/default.revealjs
|
|
|
|
data/templates/default.dzslides
|
|
|
|
data/templates/default.asciidoc
|
|
|
|
data/templates/default.haddock
|
|
|
|
data/templates/default.textile
|
|
|
|
data/templates/default.org
|
|
|
|
data/templates/default.epub
|
|
|
|
data/templates/default.epub3
|
2009-12-31 02:11:13 +01:00
|
|
|
-- data for ODT writer
|
2014-08-13 20:16:50 +02:00
|
|
|
data/reference.odt
|
2012-01-03 21:10:10 +01:00
|
|
|
-- data for docx writer
|
2014-08-13 20:16:50 +02:00
|
|
|
data/reference.docx
|
2010-07-03 07:07:00 +02:00
|
|
|
-- stylesheet for EPUB writer
|
2014-08-13 20:16:50 +02:00
|
|
|
data/epub.css
|
2008-08-13 05:02:42 +02:00
|
|
|
-- data for LaTeXMathML writer
|
2014-08-13 20:16:50 +02:00
|
|
|
data/LaTeXMathML.js
|
|
|
|
data/MathMLinHTML.js
|
2011-12-30 02:41:06 +01:00
|
|
|
-- data for dzslides writer
|
2014-08-13 20:16:50 +02:00
|
|
|
data/dzslides/template.html
|
2013-04-03 06:08:38 +02:00
|
|
|
-- sample lua custom writer
|
|
|
|
data/sample.lua
|
2009-12-31 02:11:13 +01:00
|
|
|
-- documentation
|
2014-04-07 00:04:50 +02:00
|
|
|
README, COPYRIGHT
|
2009-12-31 02:11:13 +01:00
|
|
|
Extra-Source-Files:
|
2014-04-07 00:04:50 +02:00
|
|
|
-- documentation
|
|
|
|
INSTALL, BUGS, CONTRIBUTING.md, changelog
|
2010-12-07 21:10:07 +01:00
|
|
|
-- code to create pandoc.1 man page
|
2014-08-13 21:31:19 +02:00
|
|
|
Makefile
|
2014-08-13 20:16:50 +02:00
|
|
|
man/man1/pandoc.1.template
|
|
|
|
man/man5/pandoc_markdown.5.template
|
2011-10-24 03:26:50 +02:00
|
|
|
-- generated man pages (produced post-build)
|
2014-08-13 20:16:50 +02:00
|
|
|
man/man1/pandoc.1
|
|
|
|
man/man5/pandoc_markdown.5
|
2015-03-28 22:22:04 +01:00
|
|
|
-- source files for reference.docx
|
|
|
|
data/docx/[Content_Types].xml
|
|
|
|
data/docx/_rels/.rels
|
|
|
|
data/docx/docProps/app.xml
|
|
|
|
data/docx/docProps/core.xml
|
|
|
|
data/docx/word/document.xml
|
|
|
|
data/docx/word/fontTable.xml
|
|
|
|
data/docx/word/footnotes.xml
|
|
|
|
data/docx/word/numbering.xml
|
|
|
|
data/docx/word/settings.xml
|
|
|
|
data/docx/word/webSettings.xml
|
|
|
|
data/docx/word/styles.xml
|
|
|
|
data/docx/word/_rels/document.xml.rels
|
|
|
|
data/docx/word/_rels/footnotes.xml.rels
|
|
|
|
data/docx/word/theme/theme1.xml
|
|
|
|
-- source files for reference.odt
|
|
|
|
data/odt/mimetype
|
|
|
|
data/odt/manifest.rdf
|
|
|
|
data/odt/styles.xml
|
|
|
|
data/odt/content.xml
|
|
|
|
data/odt/meta.xml
|
|
|
|
data/odt/settings.xml
|
|
|
|
data/odt/Configurations2/accelerator/current.xml
|
|
|
|
data/odt/Thumbnails/thumbnail.png
|
|
|
|
data/odt/META-INF/manifest.xml
|
2014-08-18 01:11:09 +02:00
|
|
|
-- trypandoc
|
|
|
|
trypandoc/Makefile
|
|
|
|
trypandoc/index.html
|
2008-08-10 01:45:40 +02:00
|
|
|
-- tests
|
2014-08-13 20:16:50 +02:00
|
|
|
tests/bodybg.gif
|
|
|
|
tests/*.native
|
2012-06-25 00:57:54 +02:00
|
|
|
tests/docbook-reader.docbook
|
2014-08-13 20:16:50 +02:00
|
|
|
tests/html-reader.html
|
|
|
|
tests/opml-reader.opml
|
|
|
|
tests/haddock-reader.haddock
|
|
|
|
tests/insert
|
|
|
|
tests/lalune.jpg
|
|
|
|
tests/movie.jpg
|
2015-03-28 23:37:36 +01:00
|
|
|
tests/media/rId25.jpg
|
|
|
|
tests/media/rId26.jpg
|
|
|
|
tests/media/rId27.jpg
|
2014-08-13 20:16:50 +02:00
|
|
|
tests/latex-reader.latex
|
|
|
|
tests/textile-reader.textile
|
|
|
|
tests/markdown-reader-more.txt
|
|
|
|
tests/markdown-citations.txt
|
|
|
|
tests/textile-reader.textile
|
|
|
|
tests/mediawiki-reader.wiki
|
|
|
|
tests/rst-reader.rst
|
|
|
|
tests/s5-basic.html
|
|
|
|
tests/s5-fancy.html
|
|
|
|
tests/s5-fragment.html
|
|
|
|
tests/s5-inserts.html
|
|
|
|
tests/tables.context
|
|
|
|
tests/tables.docbook
|
2014-08-18 01:23:26 +02:00
|
|
|
tests/tables.dokuwiki
|
|
|
|
tests/tables.icml
|
2014-08-13 20:16:50 +02:00
|
|
|
tests/tables.html
|
|
|
|
tests/tables.latex
|
|
|
|
tests/tables.man
|
|
|
|
tests/tables.plain
|
|
|
|
tests/tables.markdown
|
|
|
|
tests/tables.mediawiki
|
|
|
|
tests/tables.textile
|
|
|
|
tests/tables.opendocument
|
|
|
|
tests/tables.org
|
|
|
|
tests/tables.asciidoc
|
|
|
|
tests/tables.haddock
|
|
|
|
tests/tables.texinfo
|
|
|
|
tests/tables.rst
|
|
|
|
tests/tables.rtf
|
|
|
|
tests/tables.txt
|
|
|
|
tests/tables.fb2
|
|
|
|
tests/testsuite.txt
|
|
|
|
tests/writer.latex
|
|
|
|
tests/writer.context
|
|
|
|
tests/writer.docbook
|
|
|
|
tests/writer.html
|
|
|
|
tests/writer.man
|
|
|
|
tests/writer.markdown
|
|
|
|
tests/writer.plain
|
|
|
|
tests/writer.mediawiki
|
|
|
|
tests/writer.textile
|
|
|
|
tests/writer.opendocument
|
|
|
|
tests/writer.org
|
|
|
|
tests/writer.asciidoc
|
|
|
|
tests/writer.haddock
|
|
|
|
tests/writer.rst
|
|
|
|
tests/writer.icml
|
|
|
|
tests/writer.rtf
|
|
|
|
tests/writer.texinfo
|
|
|
|
tests/writer.fb2
|
|
|
|
tests/writer.opml
|
|
|
|
tests/writer.dokuwiki
|
|
|
|
tests/dokuwiki_inline_formatting.dokuwiki
|
|
|
|
tests/lhs-test.markdown
|
|
|
|
tests/lhs-test.markdown+lhs
|
|
|
|
tests/lhs-test.rst
|
|
|
|
tests/lhs-test.rst+lhs
|
|
|
|
tests/lhs-test.latex
|
|
|
|
tests/lhs-test.latex+lhs
|
|
|
|
tests/lhs-test.html
|
|
|
|
tests/lhs-test.html+lhs
|
|
|
|
tests/lhs-test.fragment.html+lhs
|
|
|
|
tests/pipe-tables.txt
|
2014-11-09 08:18:58 +01:00
|
|
|
tests/dokuwiki_external_images.dokuwiki
|
|
|
|
tests/dokuwiki_external_images.native
|
2014-08-30 22:14:50 +02:00
|
|
|
tests/dokuwiki_multiblock_table.dokuwiki
|
|
|
|
tests/dokuwiki_multiblock_table.native
|
2014-08-13 20:16:50 +02:00
|
|
|
tests/fb2/*.markdown
|
|
|
|
tests/fb2/*.fb2
|
|
|
|
tests/fb2/images-embedded.html
|
|
|
|
tests/fb2/images-embedded.fb2
|
|
|
|
tests/fb2/test-small.png
|
|
|
|
tests/fb2/test.jpg
|
|
|
|
tests/docx/*.docx
|
|
|
|
tests/docx/*.native
|
|
|
|
tests/epub/*.epub
|
|
|
|
tests/epub/*.native
|
2014-07-25 21:39:13 +02:00
|
|
|
tests/txt2tags.t2t
|
2014-10-30 15:31:38 +01:00
|
|
|
tests/twiki-reader.twiki
|
2008-08-10 01:45:40 +02:00
|
|
|
|
2011-02-05 19:34:55 +01:00
|
|
|
Source-repository head
|
|
|
|
type: git
|
2011-02-05 19:38:25 +01:00
|
|
|
location: git://github.com/jgm/pandoc.git
|
2011-02-05 19:34:55 +01:00
|
|
|
|
2012-12-30 02:44:02 +01:00
|
|
|
Flag embed_data_files
|
|
|
|
Description: Embed data files in binary for relocatable executable.
|
|
|
|
Default: False
|
2006-10-17 16:22:29 +02:00
|
|
|
|
2014-08-18 01:11:09 +02:00
|
|
|
Flag trypandoc
|
|
|
|
Description: Build trypandoc cgi executable.
|
|
|
|
Default: False
|
|
|
|
|
2014-05-19 07:04:39 +02:00
|
|
|
Flag https
|
|
|
|
Description: Enable support for downloading of resources over https.
|
2013-07-05 07:40:23 +02:00
|
|
|
Default: True
|
|
|
|
|
2014-08-21 00:34:13 +02:00
|
|
|
Flag network-uri
|
2014-12-20 01:13:38 +01:00
|
|
|
Description: Get Network.URI from the network-uri package
|
|
|
|
Default: True
|
2014-08-21 00:34:13 +02:00
|
|
|
|
2014-12-20 02:26:14 +01:00
|
|
|
Flag old-locale
|
|
|
|
Description: Use old-locale and time < 1.5
|
|
|
|
Default: True
|
|
|
|
|
2007-11-06 01:07:17 +01:00
|
|
|
Library
|
2012-09-23 21:57:05 +02:00
|
|
|
Build-Depends: base >= 4.2 && <5,
|
2013-03-06 22:06:35 +01:00
|
|
|
syb >= 0.1 && < 0.5,
|
2012-09-23 21:57:05 +02:00
|
|
|
containers >= 0.1 && < 0.6,
|
2013-05-17 08:00:58 +02:00
|
|
|
unordered-containers >= 0.2 && < 0.3,
|
2013-12-10 06:07:33 +01:00
|
|
|
array >= 0.3 && < 0.6,
|
2012-02-05 04:38:51 +01:00
|
|
|
parsec >= 3.1 && < 3.2,
|
2014-05-07 20:21:04 +02:00
|
|
|
mtl >= 1.1 && < 2.3,
|
2015-03-19 19:47:20 +01:00
|
|
|
filepath >= 1.1 && < 1.5,
|
2013-12-10 06:07:33 +01:00
|
|
|
process >= 1 && < 1.3,
|
2012-09-21 15:30:42 +02:00
|
|
|
directory >= 1 && < 1.3,
|
2012-12-31 23:34:02 +01:00
|
|
|
bytestring >= 0.9 && < 0.11,
|
2014-09-23 04:47:16 +02:00
|
|
|
text >= 0.11 && < 1.3,
|
2014-08-11 21:13:32 +02:00
|
|
|
zip-archive >= 0.2.3.4 && < 0.3,
|
2011-12-04 06:35:39 +01:00
|
|
|
HTTP >= 4000.0.5 && < 4000.3,
|
2015-04-14 06:20:52 +02:00
|
|
|
texmath >= 0.8.1 && < 0.9,
|
2012-01-31 18:48:42 +01:00
|
|
|
xml >= 1.3.12 && < 1.4,
|
2014-09-23 04:47:16 +02:00
|
|
|
random >= 1 && < 1.2,
|
2011-01-15 20:51:39 +01:00
|
|
|
extensible-exceptions >= 0.1 && < 0.2,
|
2014-08-04 16:36:18 +02:00
|
|
|
pandoc-types >= 1.12.4 && < 1.13,
|
2014-08-03 00:14:15 +02:00
|
|
|
aeson >= 0.7 && < 0.9,
|
2014-04-15 02:05:20 +02:00
|
|
|
tagsoup >= 0.13.1 && < 0.14,
|
2012-09-30 20:53:18 +02:00
|
|
|
base64-bytestring >= 0.1 && < 1.1,
|
2015-04-20 20:52:48 +02:00
|
|
|
zlib >= 0.5 && < 0.7,
|
2015-03-28 16:16:59 +01:00
|
|
|
highlighting-kate >= 0.5.14 && < 0.6,
|
2012-07-19 21:38:54 +02:00
|
|
|
data-default >= 0.4 && < 0.6,
|
2013-12-26 20:12:37 +01:00
|
|
|
temporary >= 1.1 && < 1.3,
|
2015-02-28 23:55:23 +01:00
|
|
|
blaze-html >= 0.5 && < 0.9,
|
|
|
|
blaze-markup >= 0.5.1 && < 0.8,
|
2015-05-05 01:00:28 +02:00
|
|
|
css-text >= 0.1.2 && < 0.3,
|
2014-04-15 02:06:38 +02:00
|
|
|
yaml >= 0.8.8.2 && < 0.9,
|
2014-05-16 08:32:24 +02:00
|
|
|
scientific >= 0.2 && < 0.4,
|
2013-05-11 07:53:35 +02:00
|
|
|
vector >= 0.10 && < 0.11,
|
2014-01-09 20:16:17 +01:00
|
|
|
hslua >= 0.3 && < 0.4,
|
2014-05-28 19:40:50 +02:00
|
|
|
binary >= 0.5 && < 0.8,
|
2014-06-18 20:33:09 +02:00
|
|
|
SHA >= 1.6 && < 1.7,
|
2015-01-05 04:13:21 +01:00
|
|
|
haddock-library >= 1.1 && < 1.3,
|
2014-07-30 01:57:20 +02:00
|
|
|
old-time,
|
2014-08-12 16:09:43 +02:00
|
|
|
deepseq-generics >= 0.1 && < 0.2,
|
2015-02-14 08:29:12 +01:00
|
|
|
JuicyPixels >= 3.1.6.1 && < 3.3,
|
2015-03-17 06:20:42 +01:00
|
|
|
filemanip >= 0.3 && < 0.4,
|
2015-03-23 19:24:31 +01:00
|
|
|
cmark >= 0.3.1 && < 0.4
|
2014-12-20 02:26:14 +01:00
|
|
|
if flag(old-locale)
|
|
|
|
Build-Depends: old-locale >= 1 && < 1.1,
|
|
|
|
time >= 1.2 && < 1.5
|
|
|
|
else
|
|
|
|
Build-Depends: time >= 1.5 && < 1.6
|
2014-08-21 00:34:13 +02:00
|
|
|
if flag(network-uri)
|
|
|
|
Build-Depends: network-uri >= 2.6 && < 2.7, network >= 2.6
|
|
|
|
else
|
|
|
|
Build-Depends: network >= 2 && < 2.6
|
2014-05-19 07:04:39 +02:00
|
|
|
if flag(https)
|
2014-09-23 04:47:16 +02:00
|
|
|
Build-Depends: http-client >= 0.3.2 && < 0.5,
|
2014-05-19 07:04:39 +02:00
|
|
|
http-client-tls >= 0.2 && < 0.3,
|
2013-07-05 07:40:23 +02:00
|
|
|
http-types >= 0.8 && < 0.9
|
2014-05-19 07:04:39 +02:00
|
|
|
cpp-options: -DHTTP_CLIENT
|
2012-12-30 02:44:02 +01:00
|
|
|
if flag(embed_data_files)
|
|
|
|
cpp-options: -DEMBED_DATA_FILES
|
2013-09-16 17:10:31 +02:00
|
|
|
-- Build-Tools: hsb2hs -- not yet recognized by cabal
|
2013-01-23 17:33:45 +01:00
|
|
|
other-modules: Text.Pandoc.Data
|
2014-02-24 05:35:07 +01:00
|
|
|
if os(windows)
|
|
|
|
Cpp-options: -D_WINDOWS
|
2013-08-04 01:44:54 +02:00
|
|
|
Ghc-Options: -rtsopts -Wall -fno-warn-unused-do-bind
|
2015-03-28 18:10:14 +01:00
|
|
|
Ghc-Prof-Options: -fprof-auto-exported -rtsopts
|
2012-02-06 17:10:56 +01:00
|
|
|
Default-Language: Haskell98
|
2012-02-06 17:07:17 +01:00
|
|
|
Other-Extensions: PatternGuards, OverloadedStrings,
|
|
|
|
ScopedTypeVariables, GeneralizedNewtypeDeriving,
|
|
|
|
RelaxedPolyRec, DeriveDataTypeable, TypeSynonymInstances,
|
|
|
|
FlexibleInstances
|
2009-01-24 21:00:26 +01:00
|
|
|
Hs-Source-Dirs: src
|
2010-07-21 20:24:50 +02:00
|
|
|
|
2007-11-06 01:07:17 +01:00
|
|
|
Exposed-Modules: Text.Pandoc,
|
2012-07-25 19:18:57 +02:00
|
|
|
Text.Pandoc.Options,
|
2010-12-13 05:09:14 +01:00
|
|
|
Text.Pandoc.Pretty,
|
2007-11-06 01:07:17 +01:00
|
|
|
Text.Pandoc.Shared,
|
2014-07-31 21:00:21 +02:00
|
|
|
Text.Pandoc.MediaBag,
|
2015-02-18 13:55:04 +01:00
|
|
|
Text.Pandoc.Error,
|
2007-11-06 01:07:17 +01:00
|
|
|
Text.Pandoc.Readers.HTML,
|
|
|
|
Text.Pandoc.Readers.LaTeX,
|
|
|
|
Text.Pandoc.Readers.Markdown,
|
2015-03-17 06:20:42 +01:00
|
|
|
Text.Pandoc.Readers.CommonMark,
|
2012-09-10 19:02:12 +02:00
|
|
|
Text.Pandoc.Readers.MediaWiki,
|
2007-11-06 01:07:17 +01:00
|
|
|
Text.Pandoc.Readers.RST,
|
2014-03-04 00:33:25 +01:00
|
|
|
Text.Pandoc.Readers.Org,
|
2012-04-15 01:44:21 +02:00
|
|
|
Text.Pandoc.Readers.DocBook,
|
2013-03-18 01:43:51 +01:00
|
|
|
Text.Pandoc.Readers.OPML,
|
2007-12-02 01:36:32 +01:00
|
|
|
Text.Pandoc.Readers.TeXMath,
|
2010-10-03 20:55:46 +02:00
|
|
|
Text.Pandoc.Readers.Textile,
|
2011-01-20 03:36:27 +01:00
|
|
|
Text.Pandoc.Readers.Native,
|
2013-03-28 22:53:10 +01:00
|
|
|
Text.Pandoc.Readers.Haddock,
|
2014-07-07 20:21:38 +02:00
|
|
|
Text.Pandoc.Readers.TWiki,
|
2014-06-17 07:44:40 +02:00
|
|
|
Text.Pandoc.Readers.Docx,
|
2014-07-30 01:57:20 +02:00
|
|
|
Text.Pandoc.Readers.EPUB,
|
2010-07-04 22:55:48 +02:00
|
|
|
Text.Pandoc.Writers.Native,
|
2007-11-06 01:07:17 +01:00
|
|
|
Text.Pandoc.Writers.Docbook,
|
2013-03-20 04:35:14 +01:00
|
|
|
Text.Pandoc.Writers.OPML,
|
2007-11-06 01:07:17 +01:00
|
|
|
Text.Pandoc.Writers.HTML,
|
2013-12-01 21:11:39 +01:00
|
|
|
Text.Pandoc.Writers.ICML,
|
2007-11-06 01:07:17 +01:00
|
|
|
Text.Pandoc.Writers.LaTeX,
|
|
|
|
Text.Pandoc.Writers.ConTeXt,
|
2008-03-19 19:45:51 +01:00
|
|
|
Text.Pandoc.Writers.OpenDocument,
|
2008-02-24 21:40:17 +01:00
|
|
|
Text.Pandoc.Writers.Texinfo,
|
2007-11-06 01:07:17 +01:00
|
|
|
Text.Pandoc.Writers.Man,
|
|
|
|
Text.Pandoc.Writers.Markdown,
|
2015-03-23 19:35:44 +01:00
|
|
|
Text.Pandoc.Writers.CommonMark,
|
2014-06-19 00:32:13 +02:00
|
|
|
Text.Pandoc.Writers.Haddock,
|
2007-11-06 01:07:17 +01:00
|
|
|
Text.Pandoc.Writers.RST,
|
2010-12-04 11:27:39 +01:00
|
|
|
Text.Pandoc.Writers.Org,
|
2011-11-19 06:09:23 +01:00
|
|
|
Text.Pandoc.Writers.AsciiDoc,
|
2013-04-03 06:08:38 +02:00
|
|
|
Text.Pandoc.Writers.Custom,
|
2010-04-10 21:38:07 +02:00
|
|
|
Text.Pandoc.Writers.Textile,
|
2008-07-27 05:25:51 +02:00
|
|
|
Text.Pandoc.Writers.MediaWiki,
|
2013-07-14 14:40:27 +02:00
|
|
|
Text.Pandoc.Writers.DokuWiki,
|
2007-11-06 01:07:17 +01:00
|
|
|
Text.Pandoc.Writers.RTF,
|
2010-07-03 05:12:14 +02:00
|
|
|
Text.Pandoc.Writers.ODT,
|
2012-01-03 21:10:10 +01:00
|
|
|
Text.Pandoc.Writers.Docx,
|
2010-07-03 07:07:00 +02:00
|
|
|
Text.Pandoc.Writers.EPUB,
|
2012-04-25 02:40:33 +02:00
|
|
|
Text.Pandoc.Writers.FB2,
|
2012-01-21 03:57:16 +01:00
|
|
|
Text.Pandoc.PDF,
|
2012-09-26 04:54:21 +02:00
|
|
|
Text.Pandoc.UTF8,
|
2011-11-19 09:20:00 +01:00
|
|
|
Text.Pandoc.Templates,
|
2012-12-30 01:42:17 +01:00
|
|
|
Text.Pandoc.XML,
|
2013-08-09 00:13:28 +02:00
|
|
|
Text.Pandoc.SelfContained,
|
2014-07-11 10:16:54 +02:00
|
|
|
Text.Pandoc.Process,
|
|
|
|
Text.Pandoc.Readers.Txt2Tags
|
2014-06-18 20:33:09 +02:00
|
|
|
Other-Modules: Text.Pandoc.Readers.Docx.Lists,
|
2014-06-23 21:29:04 +02:00
|
|
|
Text.Pandoc.Readers.Docx.Reducible,
|
2014-06-17 07:44:40 +02:00
|
|
|
Text.Pandoc.Readers.Docx.Parse,
|
2015-03-01 20:57:35 +01:00
|
|
|
Text.Pandoc.Readers.Docx.Fonts,
|
|
|
|
Text.Pandoc.Readers.Docx.Util,
|
|
|
|
Text.Pandoc.Readers.Docx.StyleMap
|
2013-07-02 05:47:26 +02:00
|
|
|
Text.Pandoc.Writers.Shared,
|
2013-04-24 05:00:58 +02:00
|
|
|
Text.Pandoc.Asciify,
|
2013-03-28 23:31:15 +01:00
|
|
|
Text.Pandoc.MIME,
|
2013-02-13 05:14:43 +01:00
|
|
|
Text.Pandoc.Parsing,
|
2010-07-03 07:07:00 +02:00
|
|
|
Text.Pandoc.UUID,
|
2012-01-09 04:16:06 +01:00
|
|
|
Text.Pandoc.ImageSize,
|
2012-01-23 04:58:45 +01:00
|
|
|
Text.Pandoc.Slides,
|
2013-03-06 07:09:42 +01:00
|
|
|
Text.Pandoc.Highlighting,
|
2014-12-20 01:13:38 +01:00
|
|
|
Text.Pandoc.Compat.Locale,
|
2013-08-08 19:41:39 +02:00
|
|
|
Text.Pandoc.Compat.Monoid,
|
2014-07-12 09:56:59 +02:00
|
|
|
Text.Pandoc.Compat.Except,
|
2013-08-08 19:42:52 +02:00
|
|
|
Text.Pandoc.Compat.TagSoupEntity,
|
2014-07-27 00:52:40 +02:00
|
|
|
Text.Pandoc.Compat.Directory
|
2009-04-18 18:15:56 +02:00
|
|
|
Paths_pandoc
|
2010-07-21 20:24:50 +02:00
|
|
|
|
2012-12-30 01:42:17 +01:00
|
|
|
Buildable: True
|
2008-08-01 01:16:12 +02:00
|
|
|
|
2007-11-06 01:07:17 +01:00
|
|
|
Executable pandoc
|
2012-12-30 01:42:17 +01:00
|
|
|
Build-Depends: pandoc,
|
2014-08-04 16:36:18 +02:00
|
|
|
pandoc-types >= 1.12.4 && < 1.13,
|
2012-12-30 01:42:17 +01:00
|
|
|
base >= 4.2 && <5,
|
2012-09-21 15:30:42 +02:00
|
|
|
directory >= 1 && < 1.3,
|
2015-03-19 19:47:20 +01:00
|
|
|
filepath >= 1.1 && < 1.5,
|
2014-09-23 04:47:16 +02:00
|
|
|
text >= 0.11 && < 1.3,
|
2012-12-31 23:34:02 +01:00
|
|
|
bytestring >= 0.9 && < 0.11,
|
2011-01-15 20:51:39 +01:00
|
|
|
extensible-exceptions >= 0.1 && < 0.2,
|
2015-03-28 16:16:59 +01:00
|
|
|
highlighting-kate >= 0.5.14 && < 0.6,
|
2014-08-03 00:14:15 +02:00
|
|
|
aeson >= 0.7.0.5 && < 0.9,
|
2014-04-15 02:06:38 +02:00
|
|
|
yaml >= 0.8.8.2 && < 0.9,
|
2013-09-18 06:04:27 +02:00
|
|
|
containers >= 0.1 && < 0.6,
|
2013-08-25 07:27:08 +02:00
|
|
|
HTTP >= 4000.0.5 && < 4000.3
|
2014-08-21 00:34:13 +02:00
|
|
|
if flag(network-uri)
|
2014-09-28 18:10:42 +02:00
|
|
|
Build-Depends: network-uri >= 2.6 && < 2.7, network >= 2.6
|
2014-08-21 00:34:13 +02:00
|
|
|
else
|
|
|
|
Build-Depends: network >= 2 && < 2.6
|
2013-08-04 01:44:54 +02:00
|
|
|
Ghc-Options: -rtsopts -with-rtsopts=-K16m -Wall -fno-warn-unused-do-bind
|
2015-03-28 18:10:14 +01:00
|
|
|
Ghc-Prof-Options: -fprof-auto-exported -rtsopts -with-rtsopts=-K16m
|
2013-04-27 05:33:15 +02:00
|
|
|
if os(windows)
|
|
|
|
Cpp-options: -D_WINDOWS
|
2012-02-06 17:10:56 +01:00
|
|
|
Default-Language: Haskell98
|
2012-12-30 01:42:17 +01:00
|
|
|
Other-Extensions: PatternGuards, OverloadedStrings,
|
|
|
|
ScopedTypeVariables, GeneralizedNewtypeDeriving,
|
|
|
|
RelaxedPolyRec, DeriveDataTypeable, TypeSynonymInstances,
|
|
|
|
FlexibleInstances
|
|
|
|
Hs-Source-Dirs: .
|
|
|
|
Main-Is: pandoc.hs
|
|
|
|
Buildable: True
|
2010-12-16 02:52:35 +01:00
|
|
|
|
2014-08-18 01:11:09 +02:00
|
|
|
Executable trypandoc
|
|
|
|
Main-Is: trypandoc.hs
|
|
|
|
Hs-Source-Dirs: trypandoc
|
|
|
|
default-language: Haskell2010
|
|
|
|
if flag(trypandoc)
|
2014-08-24 17:34:30 +02:00
|
|
|
Build-Depends: base, aeson, pandoc, highlighting-kate,
|
2014-08-24 16:49:26 +02:00
|
|
|
text, wai-extra, wai >= 0.3, http-types
|
2014-08-18 01:11:09 +02:00
|
|
|
Buildable: True
|
|
|
|
else
|
|
|
|
Buildable: False
|
|
|
|
|
2013-10-09 05:52:56 +02:00
|
|
|
-- NOTE: A trick in Setup.hs makes sure this won't be installed:
|
2012-10-16 06:26:24 +02:00
|
|
|
Executable make-pandoc-man-pages
|
2012-12-30 01:42:17 +01:00
|
|
|
Main-Is: make-pandoc-man-pages.hs
|
2012-10-16 06:26:24 +02:00
|
|
|
Hs-Source-Dirs: man
|
2012-12-30 01:42:17 +01:00
|
|
|
Build-Depends: pandoc,
|
|
|
|
base >= 4.2 && < 5,
|
2012-10-16 06:26:24 +02:00
|
|
|
directory >= 1 && < 1.3,
|
2015-03-19 19:47:20 +01:00
|
|
|
filepath >= 1.1 && < 1.5,
|
2013-01-25 20:24:24 +01:00
|
|
|
old-time >= 1.0 && < 1.2,
|
2014-12-20 02:26:14 +01:00
|
|
|
time >= 1.2 && < 1.6
|
2012-10-16 06:26:24 +02:00
|
|
|
Default-Language: Haskell98
|
2015-03-28 23:37:02 +01:00
|
|
|
Buildable: True
|
2012-10-16 06:26:24 +02:00
|
|
|
|
2015-03-18 20:33:16 +01:00
|
|
|
Executable make-reference-files
|
|
|
|
Main-Is: make-reference-files.hs
|
|
|
|
Hs-Source-Dirs: data
|
|
|
|
Build-Depends: zip-archive >= 0.2.3.4 && < 0.3,
|
|
|
|
base >= 4.2 && < 5,
|
|
|
|
directory >= 1 && < 1.3,
|
|
|
|
bytestring >= 0.9 && < 0.11
|
|
|
|
Default-Language: Haskell2010
|
|
|
|
|
2012-07-26 18:43:27 +02:00
|
|
|
Test-Suite test-pandoc
|
|
|
|
Type: exitcode-stdio-1.0
|
|
|
|
Main-Is: test-pandoc.hs
|
|
|
|
Hs-Source-Dirs: tests
|
2012-12-30 01:42:17 +01:00
|
|
|
Build-Depends: base >= 4.2 && < 5,
|
2013-03-06 22:06:35 +01:00
|
|
|
syb >= 0.1 && < 0.5,
|
2012-12-30 01:42:17 +01:00
|
|
|
pandoc,
|
2014-08-04 16:36:18 +02:00
|
|
|
pandoc-types >= 1.12.4 && < 1.13,
|
2012-12-31 23:34:02 +01:00
|
|
|
bytestring >= 0.9 && < 0.11,
|
2014-09-23 04:47:16 +02:00
|
|
|
text >= 0.11 && < 1.3,
|
2012-12-30 01:42:17 +01:00
|
|
|
directory >= 1 && < 1.3,
|
2015-03-19 19:47:20 +01:00
|
|
|
filepath >= 1.1 && < 1.5,
|
2014-01-07 07:35:06 +01:00
|
|
|
process >= 1 && < 1.3,
|
2015-03-28 16:16:59 +01:00
|
|
|
highlighting-kate >= 0.5.14 && < 0.6,
|
2013-02-13 17:20:02 +01:00
|
|
|
Diff >= 0.2 && < 0.4,
|
2013-01-20 17:46:51 +01:00
|
|
|
test-framework >= 0.3 && < 0.9,
|
|
|
|
test-framework-hunit >= 0.2 && < 0.4,
|
|
|
|
test-framework-quickcheck2 >= 0.2.9 && < 0.4,
|
2015-03-19 19:47:20 +01:00
|
|
|
QuickCheck >= 2.4 && < 2.9,
|
2012-12-30 01:42:17 +01:00
|
|
|
HUnit >= 1.2 && < 1.3,
|
|
|
|
containers >= 0.1 && < 0.6,
|
2014-07-31 18:10:33 +02:00
|
|
|
ansi-terminal >= 0.5 && < 0.7,
|
2014-08-13 17:12:07 +02:00
|
|
|
executable-path >= 0.0 && < 0.1,
|
2014-08-11 21:13:32 +02:00
|
|
|
zip-archive >= 0.2.3.4 && < 0.3
|
2012-12-30 01:42:17 +01:00
|
|
|
Other-Modules: Tests.Old
|
|
|
|
Tests.Helpers
|
|
|
|
Tests.Arbitrary
|
|
|
|
Tests.Shared
|
2013-08-11 04:04:15 +02:00
|
|
|
Tests.Walk
|
2012-12-30 01:42:17 +01:00
|
|
|
Tests.Readers.LaTeX
|
|
|
|
Tests.Readers.Markdown
|
2014-03-04 00:33:25 +01:00
|
|
|
Tests.Readers.Org
|
2012-12-30 01:42:17 +01:00
|
|
|
Tests.Readers.RST
|
2014-06-17 07:44:40 +02:00
|
|
|
Tests.Readers.Docx
|
2014-07-25 21:39:13 +02:00
|
|
|
Tests.Readers.Txt2Tags
|
2014-08-10 15:33:18 +02:00
|
|
|
Tests.Readers.EPUB
|
2012-12-30 01:42:17 +01:00
|
|
|
Tests.Writers.Native
|
|
|
|
Tests.Writers.ConTeXt
|
2014-08-14 01:46:00 +02:00
|
|
|
Tests.Writers.Docbook
|
2012-12-30 01:42:17 +01:00
|
|
|
Tests.Writers.HTML
|
|
|
|
Tests.Writers.Markdown
|
2014-08-03 16:32:31 +02:00
|
|
|
Tests.Writers.Plain
|
2014-05-04 06:24:20 +02:00
|
|
|
Tests.Writers.AsciiDoc
|
2012-12-30 01:42:17 +01:00
|
|
|
Tests.Writers.LaTeX
|
2015-03-28 22:12:18 +01:00
|
|
|
Tests.Writers.Docx
|
2015-04-16 18:27:33 +02:00
|
|
|
Tests.Writers.RST
|
2014-12-09 07:42:45 +01:00
|
|
|
Ghc-Options: -rtsopts -Wall -fno-warn-unused-do-bind -threaded
|
2012-07-26 17:37:36 +02:00
|
|
|
Default-Language: Haskell98
|
|
|
|
|
2012-07-26 18:18:17 +02:00
|
|
|
benchmark benchmark-pandoc
|
|
|
|
Type: exitcode-stdio-1.0
|
|
|
|
Main-Is: benchmark-pandoc.hs
|
|
|
|
Hs-Source-Dirs: benchmark
|
2012-12-30 01:42:17 +01:00
|
|
|
Build-Depends: pandoc,
|
|
|
|
base >= 4.2 && < 5,
|
2013-03-06 22:06:35 +01:00
|
|
|
syb >= 0.1 && < 0.5,
|
2015-03-17 20:34:31 +01:00
|
|
|
criterion >= 0.5 && < 1.1
|
2013-08-04 01:44:54 +02:00
|
|
|
Ghc-Options: -rtsopts -Wall -fno-warn-unused-do-bind
|
2012-07-26 18:18:17 +02:00
|
|
|
Default-Language: Haskell98
|