Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-09-28 | Updated test suite. | John MacFarlane | 4 | -0/+24 | |
2016-09-28 | Updated changelog | John MacFarlane | 1 | -0/+2 | |
2016-09-28 | LaTeX template: use footnote package to fix notes in tables. | John MacFarlane | 1 | -7/+9 | |
Thanks to Václav Haisman. | |||||
2016-09-28 | revealjs template: Added `notes-server` option (Yoan Blanc). | John MacFarlane | 2 | -5/+11 | |
jgm/pandoc-templates#212 | |||||
2016-09-28 | Updated changelog. | John MacFarlane | 1 | -3/+17 | |
2016-09-28 | LaTeX template: set default figure placement. | John MacFarlane | 1 | -5/+5 | |
Thanks to Václav Haisman. This accompanies #3093. This change allows users to set the default figure placement for figures, instead of enforcing one choice. Users with custom templates will need to add this. | |||||
2016-09-28 | Merge pull request #3093 from wilx/master-figure-placement | John MacFarlane | 2 | -2/+2 | |
LaTeX: Do not set [htbp] figure placement options. | |||||
2016-09-28 | Whitespace fixes. | John MacFarlane | 1 | -3/+3 | |
2016-09-27 | Update MANUAL.txt for new filter behavior. | Jesse Rosenthal | 1 | -6/+17 | |
2016-09-27 | Check `$DATADIR/filters` for filters | Jesse Rosenthal | 1 | -5/+20 | |
If the `$DATADIR/filters` is present, pandoc will look in it for filters specified without a path, before looking in the $PATH. Note that unlike executables in $PATH, the `filters` dir may contain scripts that are not executable (pandoc will try to execute them using an associated interpreter, if possible). Note: the `filters` dir has priority over the user path. In order of preference, pandoc will look in: 1. a specified full or relative path (executable or non-executable) 2. `$DATADIR/filters` (executable or non-executable) 3. `$PATH` (executable only) This closes #3127. | |||||
2016-09-26 | Updated man page and MANUAL date. | John MacFarlane | 2 | -11/+91 | |
2016-09-25 | USe latest pandoc-citeproc in binary package stack.yaml. | John MacFarlane | 3 | -3/+3 | |
2016-09-25 | Use p tags for subtitle, author, date in epub, revealjs, slidy templates. | John MacFarlane | 2 | -8/+9 | |
See #3119. | |||||
2016-09-25 | HTML template: use p instead of h1 for subtitle, author, date. | John MacFarlane | 1 | -7/+7 | |
Closes #3119. | |||||
2016-09-23 | Updated changelog. | John MacFarlane | 1 | -1/+3 | |
2016-09-23 | Beamer template: added support for fontfamilies. | John MacFarlane | 1 | -7/+7 | |
As already in LaTeX. Closes #216. | |||||
2016-09-23 | Added pandoc-citeproc back to extra-deps. | John MacFarlane | 3 | -0/+3 | |
2016-09-23 | Use lts-7.0 in stack.yaml files. | John MacFarlane | 5 | -27/+5 | |
2016-09-23 | Update changelog. | John MacFarlane | 1 | -0/+226 | |
2016-09-23 | Bump to 1.17.3 | John MacFarlane | 1 | -1/+1 | |
2016-09-20 | LaTeX writer: change braced backtick to \textasciigrave{} | Jesse Rosenthal | 2 | -2/+2 | |
Backticks in verbatim environments are converted to open-single-quotes. This change makes them appear as backticks. This corresponds to how we treat `'' in verbatim environments (with \textquotesingle{}). | |||||
2016-09-20 | Merge pull request #3071 from tarleb/structured-author-doc | John MacFarlane | 1 | -7/+19 | |
Put note on structured vars in separate paragraph | |||||
2016-09-19 | Add test for backtick in verbatim. | Jesse Rosenthal | 1 | -0/+2 | |
2016-09-19 | LaTeX writer: enclose backtick in `{}` in verbatim | Jesse Rosenthal | 1 | -0/+1 | |
We don't want ligatures like ` ?` ` (which produces `¿`) inside `\texttt{}` environments, so we enclose the backtick in braces. This fixes #3121 | |||||
2016-09-06 | DocBook writer: include an anchor element when a div or span has an id. | John MacFarlane | 1 | -2/+9 | |
This closes #3102. Note that DocBook does not have a class attribute, but at least this provides an anchor for internal links. | |||||
2016-09-03 | Remove unnecessary CPP in custom Prelude. | Jesse Rosenthal | 1 | -5/+1 | |
We don't have to worry about base < 4.7. | |||||
2016-09-03 | Remove http-client CPP conditionals. | Jesse Rosenthal | 1 | -10/+1 | |
Our lower bound on http-client is 0.5, and both of these min_version tests are less than 0.5, so they will always pass. | |||||
2016-09-03 | Remove blaze-html CPP conditional. | Jesse Rosenthal | 1 | -5/+1 | |
This tests for a min value >= 0.5. But we have a lower bound of 0.5 in pandoc.cabal, so the test will always pass. (If we bump the lower bound to 0.5.1, we can remove a conditional in the HTML writer as well.) | |||||
2016-09-03 | Add EOL note to time compat module. | Jesse Rosenthal | 1 | -0/+12 | |
Because time 1.4 is a boot library for GHC 7.8, we will support the compatibility module as long as we support 7.8. But we should be clear about when we will no longer need it. | |||||
2016-09-02 | Remove TagSoup compat | Jesse Rosenthal | 6 | -26/+10 | |
We already lower-bound tagsoup at 0.13.7, which means we were always running the compatibility layer (it was conditional on min value 0.13). Better to just use `lookupEntity` from the library directly, and convert a string to a char if need be. | |||||
2016-09-02 | Remove GHC 7.6 from list of tested versions | Albert Krewinkel | 1 | -1/+1 | |
GHC versions below 7.8 are no longer supported nor tested. | |||||
2016-09-02 | Add note about GHC version support to INSTALL. | Jesse Rosenthal | 1 | -0/+3 | |
Only supporting ghc > 7.8, and encouraging haskell platform. | |||||
2016-09-02 | Bump supported ghc version in CONTRIBUTING.md. | Jesse Rosenthal | 1 | -1/+1 | |
2016-09-02 | Bump base lower bound to 4.7 | Jesse Rosenthal | 1 | -1/+1 | |
We are dropping support for ghc < 7.8. | |||||
2016-09-02 | Remove 7.6 build from .travis.yaml | Jesse Rosenthal | 1 | -3/+0 | |
We are dropping support for ghc < 7.8 | |||||
2016-09-02 | Bump base lower bound to 4.6 (ghc 7.6) | Jesse Rosenthal | 1 | -1/+1 | |
2016-09-02 | Remove unnecessary CPP condition in UTF8 | Jesse Rosenthal | 1 | -7/+2 | |
Base 4.4 is ghc 7.2, so we don't have to worry about getting a lower version. | |||||
2016-09-02 | Actually remove T/P/Compat/Except. | Jesse Rosenthal | 1 | -37/+0 | |
2016-09-02 | Change constraint on mtl. | Jesse Rosenthal | 1 | -1/+1 | |
2016-09-02 | Remove directory compat | Jesse Rosenthal | 3 | -24/+2 | |
directory 1.1 depends on base 4.5 (ghc 7.4) which we are no longer supporting. So we don't have to use a compatibility layer for it. | |||||
2016-09-02 | Remove Text.Pandoc.Compat.Except | Jesse Rosenthal | 8 | -16/+6 | |
2016-09-02 | Fix grouping of imports. | Jesse Rosenthal | 7 | -7/+8 | |
Some source files keep imports in tidy groups. Changing `Text.Pandoc.Compat.Monoid` to `Data.Monoid` could upset that. This restores tidiness. | |||||
2016-09-02 | Remove an inline monad compatibility macro. | Jesse Rosenthal | 1 | -12/+0 | |
2016-09-02 | Remove Compat.Monoid | Jesse Rosenthal | 23 | -39/+21 | |
This was only necessary for GHC versions with base below 4.5 (i.e., ghc < 7.4). | |||||
2016-09-02 | PDF: Don't crash with nonexistent image. | John MacFarlane | 1 | -1/+2 | |
Instead, emit the alt text, emphasized. This accords with what the ODT writer currently does. The user will still get a warning about a nonexistent image, but will no longer get a LaTeX crash. Closes #3100. | |||||
2016-09-02 | Merge pull request #3091 from wilx/master-narrow-no-break-space | John MacFarlane | 1 | -0/+1 | |
Translate NARROW NO-BREAK SPACE into LaTeX. | |||||
2016-08-30 | Org reader: respect unnumbered header property | Albert Krewinkel | 2 | -2/+19 | |
Sections the `unnumbered` property should, as the name implies, be excluded from the automatic numbering of section provided by some output formats. The Pandoc convention for this is to add an "unnumbered" class to the header. The reader treats properties as key-value pairs per default, so a special case is added to translate the above property to a class instead. Closes #3095. | |||||
2016-08-29 | Docx reader: make all compilers happy with traversable. | Jesse Rosenthal | 1 | -1/+3 | |
The last attempt to make 7.8 happy made 7.10 unhappy. So we need some conditional logic to appease all versions. | |||||
2016-08-29 | Docx reader: Import traverse for ghc 7.8 | Jesse Rosenthal | 1 | -0/+1 | |
The GHC 7.8 build was erroring without it. | |||||
2016-08-29 | Docx reader: clean up function with `traverse` | Jesse Rosenthal | 1 | -6/+1 | |