summaryrefslogtreecommitdiff
path: root/man
Commit message (Collapse)AuthorAge
* Remove CPP from default-extensions; add pragmas to modules as needed.John MacFarlane2013-08-04
|
* remove reference in pandoc.1 to markdown2pdf (1)Jens Petersen2013-05-01
|
* make-pandoc-man-pages: CPP macros to import right time module.John MacFarlane2013-01-25
|
* Added Attr field to Header.John MacFarlane2013-01-09
| | | | | | | | | | Previously header ids were autogenerated by the writers. Now they are generated (unless supplied explicitly) in the markdown parser, if the `header_identifiers` extension is selected. In addition, the textile reader now supports id attributes on headers.
* make-pandoc-man-pages: Use MIN_VERSION macro rather than checking GHC version.John MacFarlane2012-10-15
| | | | | This is more reliable, since directory 1.2.0.1 can be used with GHC < 1.7.6.
* Moved man page creation out of Setup.hs.John MacFarlane2012-10-15
| | | | | | | | | | * MakeManPage.hs has been transformed into man/make-pandoc-man-pages.hs. * There is now a cabal stanza for this, so the dependencies are handled by cabal. * Special treatment in Setup.hs ensures that this never gets installed; it is built and used to create the man pages. * Setup.hs cleaned up.
* Removed markdown2pdf and documentation.John MacFarlane2012-01-20
|
* Revert "Added built man pages to repository."John MacFarlane2011-10-23
| | | | This reverts commit eac1fc3750923698db82011b9fda5a0788dfcfea.
* Added built man pages to repository.John MacFarlane2011-10-23
| | | | | | | In general I don't like adding generated content to the repository, but I also want to make it possible to clone the repository and 'cabal install'. THe current system with Setup.hs calling MakeManPage.hs is too fragile.
* Added `--luatex` option to markdown2pdf.John MacFarlane2011-07-22
| | | | This uses lualatex to create the PDF.
* Deprecated `--xetex` option - it is no longer needed.John MacFarlane2011-07-22
| | | | | | | | | | Deprecated `writerXeTeX` and the `--xetex` option. The latex writer now produces a file that can be processed by latex, pdflatex, lualatex, or xelatex, so this option isn't needed. The option is still neded in markdown2pdf, however, which has been modified to take some options that aren't in pandoc.
* Updated some dates in documentation.John MacFarlane2011-01-29
|
* Support --listings in markdown2pdf (Etienne Millon).John MacFarlane2011-01-28
|
* Refactored man pages.John MacFarlane2011-01-28
| | | | | | * Markdown syntax description from README now goes in pandoc_markdown.5. * Refactored man page construction functions, putting more of the work in MakeManPages.hs.
* Moved manpage.template -> man/man1/pandoc.1.template.John MacFarlane2011-01-28
|
* Documented -V fontsize= in markdown2pdf man page.John MacFarlane2011-01-01
|
* Removed deprecated -C/--custom-header option.John MacFarlane2010-12-11
| | | | Use --template instead.
* Added Paulo Tanimoto to AUTHORS in markdown2pdf man page.John MacFarlane2010-12-07
|
* Use same options documentation in README and man page.John MacFarlane2010-12-07
| | | | Later we will generate the man page from the README.
* Documented fact that you can specify --bibliography repeatedly.John MacFarlane2010-12-05
|
* Documented org-mode writer in README, cabal, man pages.John MacFarlane2010-12-05
|
* Documented all the formats citeproc/bibutils can handle.John MacFarlane2010-12-05
|
* Updated README and pandoc man page with textile reader.John MacFarlane2010-12-03
|
* More documentation for citeproc features (still incomplete).John MacFarlane2010-12-03
|
* Added --bibliography, --csl, --data-dir to markdown2pdf man page.John MacFarlane2010-12-02
|
* Added --bibliography and --csl to pandoc man page.John MacFarlane2010-12-02
|
* Merge branch 'textile'John MacFarlane2010-11-27
|\ | | | | | | | | | | | | Conflicts: README man/man1/pandoc.1.md pandoc.cabal
| * Added Textile writer module.John MacFarlane2010-05-17
| |
* | Added support for MathJax for displaying math in HTML.John MacFarlane2010-10-26
| | | | | | | | | | | | | | | | Added --mathjax option. Added MathJax to HTMLMathMethod. Supported MathJax in HTML writer. Resolves Issue #259.
* | Added new --offline option for slidy.John MacFarlane2010-07-22
| | | | | | | | Added slidy/slidy.min.{css,js}.
* | Updated --data-dir documentation to include epub.css.John MacFarlane2010-07-21
| |
* | Added --section-divs option.John MacFarlane2010-07-15
| | | | | | | | | | | | | | + Header identifiers now get attached to the headers, unless --section-divs is specified, in which case they are added to enclosing divs. By default, the divs are not added. + Resolves Issue #230, #239.
* | Added --webtex option for HTML math.John MacFarlane2010-07-15
| | | | | | | | | | | | | | | | | | + Added --webtex command-line option, with optional parameter. (Defaults to using google charts API.) + Added WebTeX HTMLMathMethod. + Removed MimeTeX HTMLMathMethod. (WebTeX is generic and subsumes it.) + Modified --mimetex option to use WebTeX. + Thanks to lpeterse for the idea and some of the code.
* | Fixed pandoc man page source.John MacFarlane2010-07-14
| |
* | Added a slidy writer.John MacFarlane2010-07-13
| | | | | | | | Resolves Issue #122.
* | Documented EPUB writer and --epub-{stylesheet,metadata} options.John MacFarlane2010-07-05
|/
* Updated man page and README.John MacFarlane2010-05-06
| | | | Pandoc no longer respects locale, even when compiled by GHC 6.12.
* Removed refs to hsmarkdown, html2markdown from pandoc man page.John MacFarlane2010-03-23
|
* Added --mathml option; removed Text.Pandoc.LaTeXMathML.fiddlosopher2010-03-18
| | | | | | | | | | | * Added data/MathMLinHTML.js, which is included when no URL is provided for --mathml. This allows MathML to be displayed in better browsers, as text/html. * The module was no longer necessary; its functionality (two lines) was incorporated into pandoc.hs. * Consolidated the two LaTeXMathML.js files into one. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1909 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added plain writer.fiddlosopher2010-03-18
| | | | | | | | Text.Pandoc.Writers.Markdown now exports a writePlain, which writes plain text without links, pictures, or special formatting (not even markdown conventions). git-svn-id: https://pandoc.googlecode.com/svn/trunk@1907 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added --base-header-level option.fiddlosopher2010-03-14
| | | | | | | Thanks to Jérémy Bobbio for the patch that formed the basis of this commit. Closes Debian #563416. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1889 788f1e2b-df1e-0410-8736-df70ead52e1b
* Use template variables for include-before/after.fiddlosopher2010-03-13
| | | | | | | | | | | | * These options now imply -s; previously they worked also in fragment mode. * Users can now adjust position of include-before and include-after text in the templates. * Default position of include-before moved back (as it originally was) before table of contents. * Resolves Issue #217. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1883 788f1e2b-df1e-0410-8736-df70ead52e1b
* Removed html2markdown and hsmarkdown.fiddlosopher2010-02-06
| | | | | | | | | | | | html2markdown is no longer needed, since you can pass URI arguments to pandoc and directly convert web pages. (Note, however, that pandoc assumes the pages are UTF8. html2markdown made an attempt to guess the encoding and convert them.) hsmarkdown is pointless -- a large executable that could be replaced by 'pandoc --strict'. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1834 788f1e2b-df1e-0410-8736-df70ead52e1b
* Updated markdown2pdf man page.fiddlosopher2010-02-03
| | | | | | It no longer says all pandoc options are accepted. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1830 788f1e2b-df1e-0410-8736-df70ead52e1b
* Removed advice to pipe through tidy before HTML reader.fiddlosopher2010-02-02
| | | | | | This is obsolete, now that we have a forgiving HTML parser. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1827 788f1e2b-df1e-0410-8736-df70ead52e1b
* Allow absolute URI as parameter (in this case, content is downloaded).fiddlosopher2010-02-02
| | | | | | | | | + Adds dependency on HTTP. + If a parameter is an absolute URI, pandoc will try to get the content via HTTP. + So, you can do: pandoc -r html -w markdown http://www.fsf.org git-svn-id: https://pandoc.googlecode.com/svn/trunk@1826 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added --data-dir option.fiddlosopher2010-01-14
| | | | | | | | | | | | | + This specifies a user data directory. If not specified, will default to ~/.pandoc on unix or Application Data\pandoc on Windows. Files placed in the user data directory will override system default data files. + Added datadir parameter to readDataFile, saveOpenDocumentAsODT, latexMathMLScript, s5HeaderIncludes, and getTemplate. Removed getDefaultTemplate. + Updated documentation. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1809 788f1e2b-df1e-0410-8736-df70ead52e1b
* Deprecated --custom-header in documentation.fiddlosopher2010-01-10
| | | | | | Removed old "Custom Headers" section in README. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1800 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added --reference-odt option.fiddlosopher2009-12-31
| | | | | | | | | | | This allows the user to customized the styles used in pandoc-generated ODTs. The user may also put a default reference.odt in the ~/.pandoc directory. We have removed the old data/odt directory and replaced it with a reference.odt. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1760 788f1e2b-df1e-0410-8736-df70ead52e1b
* Fuller discussion of Templates in README and man page.fiddlosopher2009-12-31
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1756 788f1e2b-df1e-0410-8736-df70ead52e1b