summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Added INSTALL instructions about older cabal versions.John MacFarlane2015-04-02
| | | | | | IT may be necessary to update cabal, since older versions don't take into account the (new) possibility of changed metadata on Hackage.
* Added "noProof" to docx syntax highlighting SourceCode style.John MacFarlane2015-04-01
|
* reveal.js template: add new configurable options.John MacFarlane2015-03-31
| | | | | | | | (Dmitry Smirnov, jgm/pandoc-templates#89) * Made option "center" configurable. * Added new options "maxScale" and "slideNumber". * Added comments to existing options.
* Merge pull request #2042 from lierdakil/issue1866John MacFarlane2015-03-31
|\ | | | | LaTeX Reader: check for block-level newcommand aliases in blockCommand
| * Latex Reader: Block commands code cleanupNikolay Yakimov2015-03-31
| |
| * Latex Reader: Guard against para starting with inline macroNikolay Yakimov2015-03-30
| |
| * Latex Reader: More tests for corner casesNikolay Yakimov2015-03-30
| |
| * Latex Reader: Test for para starting with latex macroNikolay Yakimov2015-03-30
| |
| * LaTeX Reader: check for block-level newcommand aliases in blockCommandNikolay Yakimov2015-03-30
| |
* | Merge pull request #2035 from lierdakil/issue2031John MacFarlane2015-03-30
|\ \ | | | | | | Docx Writer/Reference: Add keepNext to objects w/ captions
| * | Updated README with new Docx Writer style namesNikolay Yakimov2015-03-29
| | |
| * | Reference Docx: Add keepNext to table captionsNikolay Yakimov2015-03-29
| | |
| * | Docx Writer: Add a style to figure imagesNikolay Yakimov2015-03-29
| | | | | | | | | | | | | | | | | | | | | Figures with empty captions use style "Figure" Figures with nonempty captions use style "Figure with Caption", which is based on "Figure", and additionally has keepNext set.
* | | benchmark - removed kludge we needed before CommonMark writer.John MacFarlane2015-03-30
| | |
* | | Added CommonMark writer.John MacFarlane2015-03-29
| | | | | | | | | | | | | | | Added `Text.Pandoc.Writers.CommonMark`, exporting `writeCommonMark`.
* | | Require cmark 0.3.1.John MacFarlane2015-03-29
| |/ |/|
* | Merge pull request #2038 from lierdakil/docx-hyphen-settingsJohn MacFarlane2015-03-29
|\ \ | | | | | | Docx Writer: Copy hyphenation settings from reference.docx
| * | Docx Writer: Copy hyphenation settings from reference.docxNikolay Yakimov2015-03-29
| |/
* | Merge pull request #2037 from lierdakil/issue458John MacFarlane2015-03-29
|\ \ | | | | | | Docx Writer: support for --toc option
| * | Docx Writer: Place toc after abstract, rather than beforeNikolay Yakimov2015-03-29
| | |
| * | Add toc heading style to reference.docxNikolay Yakimov2015-03-29
| | |
| * | Docx Writer: Initial support for --toc option (issue #458)Nikolay Yakimov2015-03-29
| |/ | | | | | | Creates a "dirty" TOC at the beginning of document, before abstract
* | Merge pull request #2039 from mpickering/7.10John MacFarlane2015-03-29
|\ \ | | | | | | Docx Writer: Filter out illegal XML characters
| * | Docx Writer: Filter out illegal XML charactersMatthew Pickering2015-03-29
|/ / | | | | | | Fixes #1992
* | README: Add links to filter libs in perl, php, javascript.John MacFarlane2015-03-28
| | | | | | | | Closes #1829.
* | Merge branch 'rootzlevel-master'John MacFarlane2015-03-28
|\ \ | |/ |/|
| * Merge branch 'master' of https://github.com/rootzlevel/pandoc into ↵John MacFarlane2015-03-28
|/| | | | | | | | | | | | | rootzlevel-master Conflicts: src/Text/Pandoc/Readers/Org.hs
| * Org reader: Add test for image linksHans-Peter Deifel2015-02-26
| | | | | | | | | | Tests for image links with non-image targets, as introduced in commit 2ca5101.
| * Org reader: Allow image links with non-image targetsHans-Peter Deifel2015-02-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Org-Mode's own html exporter converts the following org link: [[http://example.com][https://www.haskell.org/static/img/logo.png]] to <a href="http://example.com"> <img src="https://www.haskell.org/static/img/logo.png" alt="logo.png" /> </a> but pandoc generates: <a href="http://example.com"> <a href="https://www.haskell.org/static/img/logo.png" class="uri"> https://www.haskell.org/static/img/logo.png </a> </a> which is useless. With this patch, it generates: <a href="http://example.com"> <img src="https://www.haskell.org/static/img/logo.png" alt="" /> </a>
* | Merge pull request #2034 from lierdakil/issue2032John MacFarlane2015-03-28
|\ \ | | | | | | Reference Docx: update word/footnotes.xml
| * | Reference Docx: update word/footnotes.xmlNikolay Yakimov2015-03-29
|/ /
* | Always build man pages. Removed make-pandoc-man-pages flag.John MacFarlane2015-03-28
| | | | | | | | | | | | Updated INSTALL instructions. Makefile: removed man target, now that we generate man pages by default.
* | Added images needed for docx tests to cabal extra-source-files.John MacFarlane2015-03-28
| |
* | make-pandoc-man-pages: fixed to build with new readMarkdown type.John MacFarlane2015-03-28
| |
* | Added source files for reference.docx/odt to extra-source-files.John MacFarlane2015-03-28
| |
* | Added Tests.Writers.Docx to cabal file.John MacFarlane2015-03-28
| |
* | Version bump to 1.14.John MacFarlane2015-03-28
| | | | | | | | | | This is because of the significant API changes in the reader types. (They now return an Either value.)
* | Updated code example in Text.Pandoc.John MacFarlane2015-03-28
| |
* | Merge branch 'master' of github.com:jgm/pandocJohn MacFarlane2015-03-28
|\ \
| * | Fixed typo in lhs-test.html.John MacFarlane2015-03-28
| | |
* | | Merge branch 'mpickering-errortype'John MacFarlane2015-03-28
|\ \ \ | |/ / |/| |
| * | Merge branch 'errortype' of https://github.com/mpickering/pandoc into ↵John MacFarlane2015-03-28
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mpickering-errortype Conflicts: benchmark/benchmark-pandoc.hs src/Text/Pandoc/Readers/Markdown.hs src/Text/Pandoc/Readers/Org.hs src/Text/Pandoc/Readers/RST.hs tests/Tests/Readers/LaTeX.hs
| | * | Move utility error functions to Text.Pandoc.SharedMatthew Pickering2015-02-18
| | | |
| | * | Update haddocks and copyright noticesMatthew Pickering2015-02-18
| | | |
| | * | Update benchmarksMatthew Pickering2015-02-18
| | | |
| | * | Update testsMatthew Pickering2015-02-18
| | | |
| | * | Update executable fileMatthew Pickering2015-02-18
| | | |
| | * | Update Pandoc.hsMatthew Pickering2015-02-18
| | | |
| | * | Make safeRead safe.Matthew Pickering2015-02-18
| | | | | | | | | | | | | | | | Fixes #1801
| | * | Change return type of Txt2Tags readerMatthew Pickering2015-02-18
| | | |