summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* [RST Writer] Don't normalize heading levels below input minimumNikolay Yakimov2015-09-19
|
* Markdown writer: in TOC, add links to headers.John MacFarlane2015-09-17
| | | | Closes #829.
* sample.lua - define CaptionedImage, add newline at end.John MacFarlane2015-09-15
| | | | Cloess #2393.
* Tests: docx writer tests now use "../data" for data directory.John MacFarlane2015-09-09
| | | | This allows tests to be run without installing first.
* Use user data directory for reference docx archive.John MacFarlane2015-09-09
| | | | | This allows the test suite to work without installing pandoc first. It also brings the docx writer in line with the odt writer.
* stack.yaml - bump to latest LTS Stackage.John MacFarlane2015-09-09
|
* Removed obsolete reference to default.csl.John MacFarlane2015-08-25
| | | | | | | | | | | | | Closes #2372. @cinaeco as the pandoc-citeproc man page describes, the current behavior if no style is specified is to look in `~/.csl/chicago-author-date.csl`, and if nothing is found there, to use a default version of chicago-author-date.csl. You may want to open a separate issue on jgm/pandoc-citeproc suggesting the use of `default.csl` rather than `chicago-author-date.csl`. I agree that this would make sense.
* Merge pull request #2364 from gbataille/bugDocJohn MacFarlane2015-08-17
|\ | | | | [BUG] Haddock : * and ^ to be escaped in docs
| * [BUG] Haddock : * and ^ to be escaped in docsGrégory Bataille2015-08-17
| |
* | stack-yaml: use lts 3.1 resolver.John MacFarlane2015-08-16
| |
* | Merge pull request #2352 from ousia/masterJohn MacFarlane2015-08-16
|\ \ | | | | | | added selectors for nested emphasis (epub.css)
| * | added selectors for nested emphasis (epub.css)Pablo Rodríguez2015-08-07
| | |
* | | Use cabal-install-head in travis for ghc 7.10.1.John MacFarlane2015-08-15
| | | | | | | | | | | | | | | | | | | | | See https://www.reddit.com/r/haskell/comments/3f4bgr/the_version_of_cabal_being_used_has_changed/ Maybe this will fix the Cabal version mismatch problem?
* | | Travis: removed diagnostics, add cabal path to PATH, back to ghc 7.10.1.John MacFarlane2015-08-15
| | | | | | | | | | | | | | | ghc 7.10.2 isn't whitelisted yet. https://github.com/travis-ci/travis-ci/issues/4478
* | | Added some travis diagnostics.John MacFarlane2015-08-15
| | |
* | | Travis: build with ghc 7.10.2 instead of 7.10.1.John MacFarlane2015-08-15
| | |
* | | Use real jpg (not empty) for docx tests to avoid warning.John MacFarlane2015-08-15
| | |
* | | RST reader: better handling of indirect roles.John MacFarlane2015-08-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously the parser failed on this kind of case .. role:: indirect(code) .. role:: py(indirect) :language: python :py:`hi` Now it currectly recognizes `:py:` as a code role. The previous test for this didn't work, because the name of the indirect role was the same as the language defined its parent, os it didn't really test for this behavior. Updated test.
* | | Merge pull request #2360 from jg/issue-2354John MacFarlane2015-08-15
|\ \ \ | | | | | | | | Org reader: add auto identifiers if not present on headers
| * | | Org reader: add auto identifiers if not present on headersJuliusz Gonera2015-08-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Refs #2354 This should also fix the table of contents (--toc) when generating a html file from org input
* | | | Added note to CONTRIBUTING.md about ghc versions and travis.John MacFarlane2015-08-15
| | | |
* | | | RST writer: ensure that `\ ` is inserted when needed...John MacFarlane2015-08-13
| | | | | | | | | | | | | | | | | | | | ...before Cite and Span elements that begin with a "complex" element. Closes jgm/pandoc-citeproc#157.
* | | | Updated man page.John MacFarlane2015-08-13
| | | |
* | | | Added `--bash-completion` option.John MacFarlane2015-08-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This generates a bash completion script. To use: eval "$(pandoc --bash-completion)"
* | | | Added stack install instructions to INSTALL.John MacFarlane2015-08-13
| | | |
* | | | Added a stack.yaml.John MacFarlane2015-08-13
| | | |
* | | | RST writer: Don't insert `\ ` when complex expression in matched pairs.John MacFarlane2015-08-12
| | | | | | | | | | | | | | | | E.g. `` [:sup:`3`] `` is okay; you don't need `` [:sup:`3`\ ] ``.
* | | | LaTeX template: reverted change in abstract position.John MacFarlane2015-08-11
| | | |
* | | | Revert "LaTeX template: move abstract to before `\maketitle`."John MacFarlane2015-08-11
| | | | | | | | | | | | | | | | This reverts commit aa08b4cd677b975cf63c451a3414df447e31b55c.
* | | | EPUB TOC: replace literal "<br/>" with space.John MacFarlane2015-08-10
| | | | | | | | | | | | | | | | Closes #2105.
* | | | Update version to 1.15.1.John MacFarlane2015-08-10
| | | |
* | | | EPUB reader: stop mangling external URLs.John MacFarlane2015-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #2284. Note the changes to the test suite. In each case, a mangled external link has been fixed, so these are all positive.
* | | | Allow latest criterion version.John MacFarlane2015-08-10
| | | |
* | | | Docx writer: Moved invalid character stripping to `formattedString`.John MacFarlane2015-08-10
|/ / / | | | | | | | | | | | | | | | | | | | | | This avoids an inefficient generic traversal. Updates f3aa03e. Closes #2356.
* | | LaTeX template: move abstract to before `\maketitle`.John MacFarlane2015-08-09
| | | | | | | | | | | | | | | | | | See http://tex.stackexchange.com/questions/139469/to-have-abstract-in-the-docu ment-class-revtex
* | | Text.Pandoc: disable auto_identifiers for epub.John MacFarlane2015-08-08
| | | | | | | | | | | | | | | The epub writer inserts its own auto identifiers; this is more complex due to splitting into "chapter" files.
* | | Updated html reader for new automatic header attributes.John MacFarlane2015-08-08
| | |
* | | MediaWiki reader: handle unquoted table attributes.John MacFarlane2015-08-08
| | | | | | | | | | | | Closes #2355.
* | | Revert "Travis: call test program directly rather than by cabal."John MacFarlane2015-08-08
| | | | | | | | | | | | This reverts commit 8bcaea5bd18c4dc26319d9ee9cb5c39de0ba2ed3.
* | | Travis: call test program directly rather than by cabal.John MacFarlane2015-08-08
| | |
* | | Clarified what is "out of scope" in README and CONTRIBUTING.md.John MacFarlane2015-08-08
| | |
* | | HTML reader: add auto identifiers if not present on headers.John MacFarlane2015-08-08
| | | | | | | | | | | | | | | | | | | | | | | | This makes TOC linking work properly. The same thing needs to be done to the org reader to fix #2354; in addition, `Ext_auto_identifiers` should be added to the list of default extensions for org in Text.Pandoc.
* | | DocBook reader: handle informalexample.John MacFarlane2015-08-08
| | | | | | | | | | | | | | | | | | It is parsed into a Div with class `informalexample`. Closes #2319.
* | | LaTeX reader: Implement \Cite.John MacFarlane2015-08-08
|/ / | | | | | | See #2335.
* | Merge pull request #2327 from hftf/list-styleJohn MacFarlane2015-08-07
|\ \ | | | | | | HTML Reader: Correctly parse inline list-style(-type) for <ol>
| * | HTML Reader: Detect font-variant with pickStyleAttrPropsOphir Lifshitz2015-07-27
| | |
| * | HTML Reader: Test <ol> type, class, and inline list-style(-type) CSSOphir Lifshitz2015-07-24
| | |
| * | HTML Reader: Parse <ol> type, class, and inline list-style(-type) CSSOphir Lifshitz2015-07-24
| | |
* | | Clarify docs on block quotes.John MacFarlane2015-08-06
| |/ |/| | | | | | | | | The space after `>` is optional. Closes #2346.
* | Merge pull request #2338 from trofi/masterJohn MacFarlane2015-08-01
|\ \ | | | | | | fix build failure with --flags=-https