diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-08-27 05:50:26 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-08-27 05:50:26 +0000 |
commit | 3d2ff3d0a8d6ee04e771d1261b1367d7a3f4efe3 (patch) | |
tree | 733e9f6ef7b13c7a5b6dbc196ce1ecb75aa3bd0c /freebsd | |
parent | 4f14802831477eea7b67ef40e60ed7eec82f69a5 (diff) | |
download | pandoc-3d2ff3d0a8d6ee04e771d1261b1367d7a3f4efe3.tar.gz |
Removed PDF writer from core pandoc, restored markdown2pdf.
+ Added markdown2pdf.
+ Removed Text/Pandoc/PDF.hs.
+ Removed references to PDF writer from Main.hs.
+ Removed references to PDF writer from pandoc.cabal.
+ Added markdown2pdf.1 to list of man pages in Setup.hs.
+ Added markdown2pdf.1.md man page source.
+ Added reference to markdown2pdf(1) in pandoc man page.
+ Added markdown2pdf to WRAPPERS in Makefile.
+ Removed mention of pdf writer from README; added markdown2pdf.
+ Added remarks on markdown2pdf dependencies to README.Debian.
+ Added markdown2pdf to web/index.txt.in.
+ Use markdown2pdf for pdf web demos.
+ Put markdown2pdf back into debian control and rules.
+ Added markdown2pdf to macports Portfile.
+ Added markdown2pdf to freebsd package.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1415 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'freebsd')
-rw-r--r-- | freebsd/Makefile.in | 6 | ||||
-rw-r--r-- | freebsd/pkg-descr | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/freebsd/Makefile.in b/freebsd/Makefile.in index 6ca30e32c..77748dbbc 100644 --- a/freebsd/Makefile.in +++ b/freebsd/Makefile.in @@ -16,14 +16,14 @@ COMMENT= A general markup converter BUILD_DEPENDS= ghc>=6.6:${PORTSDIR}/lang/ghc MANCOMPRESSED= no -MAN1= pandoc.1 html2markdown.1 hsmarkdown.1 +MAN1= pandoc.1 markdown2pdf.1 html2markdown.1 hsmarkdown.1 USE_GMAKE= yes USE_PERL5= yes -PLIST_FILES= bin/pandoc bin/html2markdown bin/hsmarkdown +PLIST_FILES= bin/pandoc bin/markdown2pdf bin/html2markdown bin/hsmarkdown PORTDOCS= BUGS README README.html -SCRIPTS= hsmarkdown html2markdown +SCRIPTS= markdown2pdf hsmarkdown html2markdown do-install: @${INSTALL_PROGRAM} ${WRKSRC}/dist/build/pandoc/pandoc ${PREFIX}/bin diff --git a/freebsd/pkg-descr b/freebsd/pkg-descr index b71af93a5..cff194cfb 100644 --- a/freebsd/pkg-descr +++ b/freebsd/pkg-descr @@ -1,14 +1,14 @@ Pandoc is a command-line tool for converting from one markup format to another. It can read markdown and (subsets of) reStructuredText, HTML, and LaTeX, and it can write markdown, reStructuredText, HTML, -LaTeX, ConTeXt, PDF, DocBook XML, OpenDocument XML, ODT, RTF, GNU +LaTeX, ConTeXt, DocBook XML, OpenDocument XML, ODT, RTF, GNU Texinfo, MediaWiki markup, groff man pages, and S5 HTML slide shows. Pandoc extends standard markdown syntax with footnotes, embedded LaTeX, and other features. A compatibility mode is provided for those who need a drop-in replacement for Markdown.pl. Included wrapper scripts -make it easy to convert markdown documents to PDF or ODT format and to -convert web pages to markdown documents. +make it easy to convert markdown documents to PDF and to convert web +pages to markdown documents. In contrast to existing tools for converting markdown to HTML, which use regex substitutions, pandoc has a modular design: it consists of a |