1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
|
Source: pandoc
Section: text
Priority: optional
Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
Uploaders: Jonas Smedegaard <dr@jones.dk>
, Kiwamu Okabe <kiwamu@debian.or.jp>,
, Clint Adams <clint@debian.org>
Build-Depends: cdbs (>= 0.4.72~),
devscripts,
debhelper,
dh-buildinfo,
ghc,
libghc-parsec3-dev (<< 3.2),
libghc-mtl-dev (<< 2.2),
libghc-network-dev (<< 2.4),
libghc-zip-archive-dev (<< 0.2),
libghc-utf8-string-dev (<< 0.4),
libghc-http-dev (<< 1:4000.3),
libghc-texmath-dev (<< 0.7),
libghc-xml-dev (<< 1.4),
libghc-random-dev (<<1.1 ),
libghc-citeproc-hs-dev (<< 0.4),
libghc-pandoc-types-dev (<< 1.10),
libghc-json-dev (<< 0.6),
libghc-tagsoup-dev (<< 0.13),
libghc-base64-bytestring-dev (<< 0.2),
libghc-zlib-dev (<< 0.6),
libghc-highlighting-kate-dev (>= 0.5.1),
libghc-highlighting-kate-dev (<< 0.6),
libghc-temporary-dev (<< 1.2),
libghc-blaze-html-dev (<< 0.5),
libghc-syb-dev (<< 0.4),
ghc-prof,
libghc-parsec3-prof,
libghc-mtl-prof,
libghc-network-prof,
libghc-zip-archive-prof,
libghc-utf8-string-prof,
libghc-http-prof,
libghc-texmath-prof,
libghc-xml-prof,
libghc-random-prof,
libghc-citeproc-hs-prof,
libghc-pandoc-types-prof,
libghc-json-prof,
libghc-tagsoup-prof,
libghc-base64-bytestring-prof,
libghc-zlib-prof,
libghc-highlighting-kate-prof,
libghc-temporary-prof,
libghc-blaze-html-prof,
libghc-syb-prof,
haskell-devscripts (>=0.5.12)
Build-Depends-Indep: ghc-doc
, libghc-syb-doc
, libghc-parsec3-doc
, libghc-xhtml-doc
, libghc-mtl-doc
, libghc-network-doc
, libghc-zip-archive-doc
, libghc-utf8-string-doc
, libghc-http-doc
, libghc-texmath-doc
, libghc-xml-doc
, libghc-citeproc-hs-doc
, libghc-pandoc-types-doc
, libghc-json-doc
, libghc-dlist-doc
, libghc-tagsoup-doc
, libghc-base64-bytestring-doc
, libghc-highlighting-kate-doc
, libghc-diff-doc
, libghc-testpack-doc
, libghc-binary-doc
, libghc-digest-doc
, libghc-pcre-light-doc
, libghc-transformers-doc
, libghc-zlib-doc
, libghc-blaze-html-doc
, libghc-temporary-doc
, libghc-blaze-builder-doc
, libghc-hs-bibutils-doc
, libghc-random-doc
, libghc-text-doc
Standards-Version: 3.9.3
Homepage: http://johnmacfarlane.net/pandoc/
Vcs-Git: git://git.debian.org/git/collab-maint/pandoc.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/pandoc.git
DM-Upload-Allowed: yes
Package: pandoc
Section: text
Architecture: any
Depends: ${misc:Depends}
, ${shlibs:Depends}
Recommends: ${cdbs:Recommends}
, libghc-citeproc-hs-data
Suggests: ${cdbs:Suggests}
Description: general markup converter
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, LaTeX and DocBook
XML; and it can write plain text, markdown, reStructuredText, XHTML,
HTML 5, LaTeX (including beamer slide shows), ConTeXt, RTF, DocBook
XML, OpenDocument XML, ODT, Word docx, GNU Texinfo, MediaWiki markup,
EPUB, Textile, groff man pages, Emacs Org-Mode, AsciiDoc, and Slidy,
Slideous, DZSlides, or S5 HTML slide shows. It can also produce PDF
output on systems where LaTeX is installed.
.
Pandoc's enhanced version of markdown includes syntax for footnotes,
tables, flexible ordered lists, definition lists, delimited code
blocks, superscript, subscript, strikeout, title blocks, automatic
tables of contents, embedded LaTeX math, citations, and markdown inside
HTML block elements. (These enhancements can optionally be disabled.)
.
In contrast to most 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.
.
This package contains the pandoc tool.
.
PDF output via PDFLaTeX requires the package texlive-latex-recommended,
via XeLaTeX it additionally requires texlive-xetex, and via LuaTeX
additionally texlive-luatex.
Package: libghc-pandoc-dev
Section: haskell
Priority: extra
Architecture: any
Depends: ${cdbs:Depends}
, ${haskell:Depends}
, ${haskell:Extra-Depends}
, ${misc:Depends}
, ${shlibs:Depends}
Recommends: ${haskell:Recommends}
Suggests: ${haskell:Suggests}
Provides: ${haskell:Provides}
Description: general markup converter
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, LaTeX and DocBook
XML; and it can write plain text, markdown, reStructuredText, XHTML,
HTML 5, LaTeX (including beamer slide shows), ConTeXt, RTF, DocBook
XML, OpenDocument XML, ODT, Word docx, GNU Texinfo, MediaWiki markup,
EPUB, Textile, groff man pages, Emacs Org-Mode, AsciiDoc, and Slidy,
Slideous, DZSlides, or S5 HTML slide shows. It can also produce PDF
output on systems where LaTeX is installed.
.
Pandoc's enhanced version of markdown includes syntax for footnotes,
tables, flexible ordered lists, definition lists, delimited code
blocks, superscript, subscript, strikeout, title blocks, automatic
tables of contents, embedded LaTeX math, citations, and markdown inside
HTML block elements. (These enhancements can optionally be disabled.)
.
In contrast to most 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.
.
This package contains the libraries compiled for GHC 6.
Package: libghc-pandoc-doc
Section: doc
Priority: extra
Architecture: all
Depends: ${haskell:Depends}
, ${haskell:Extra-Depends}
, ${misc:Depends}
Recommends: ${haskell:Recommends}
Description: general markup converter
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, LaTeX and DocBook
XML; and it can write plain text, markdown, reStructuredText, XHTML,
HTML 5, LaTeX (including beamer slide shows), ConTeXt, RTF, DocBook
XML, OpenDocument XML, ODT, Word docx, GNU Texinfo, MediaWiki markup,
EPUB, Textile, groff man pages, Emacs Org-Mode, AsciiDoc, and Slidy,
Slideous, DZSlides, or S5 HTML slide shows. It can also produce PDF
output on systems where LaTeX is installed.
.
Pandoc's enhanced version of markdown includes syntax for footnotes,
tables, flexible ordered lists, definition lists, delimited code
blocks, superscript, subscript, strikeout, title blocks, automatic
tables of contents, embedded LaTeX math, citations, and markdown inside
HTML block elements. (These enhancements can optionally be disabled.)
.
In contrast to most 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.
.
This package contains the library documentation for Pandoc.
Package: libghc-pandoc-prof
Section: haskell
Priority: extra
Architecture: any
Depends: ${haskell:Depends}
, ${haskell:Extra-Depends}
, ${misc:Depends}
Suggests: ${cdbs:Suggests}
Provides: ${haskell:Provides}
Description: general markup converter
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, LaTeX and DocBook
XML; and it can write plain text, markdown, reStructuredText, XHTML,
HTML 5, LaTeX (including beamer slide shows), ConTeXt, RTF, DocBook
XML, OpenDocument XML, ODT, Word docx, GNU Texinfo, MediaWiki markup,
EPUB, Textile, groff man pages, Emacs Org-Mode, AsciiDoc, and Slidy,
Slideous, DZSlides, or S5 HTML slide shows. It can also produce PDF
output on systems where LaTeX is installed.
.
Pandoc's enhanced version of markdown includes syntax for footnotes,
tables, flexible ordered lists, definition lists, delimited code
blocks, superscript, subscript, strikeout, title blocks, automatic
tables of contents, embedded LaTeX math, citations, and markdown inside
HTML block elements. (These enhancements can optionally be disabled.)
.
In contrast to most 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.
.
This package contains the profiling libraries for Pandoc.
|