summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | Fixed bug in make_linux.sh path.John MacFarlane2017-10-22
| |
* | Linux package: new debian-based non-static build.John MacFarlane2017-10-22
| |
* | Added linux/make_linux.sh.John MacFarlane2017-10-22
| | | | | | | | This does a linux build and creates deb and tgz distributions.
* | Fixed detection of VERSION in make_macos_package.sh.John MacFarlane2017-10-22
|/ | | | | This broke when we uncapitalized cabal fields! Now we get this from `pandoc --version`.
* In rendering PandocParsecError, only print input at error location...John MacFarlane2017-10-21
| | | | | | | | | | | | if the source name is `source` (i.e., the top level). Otherwise results will be misleading, since what readM does is to look up the source position of the error in the *original* input, which may not match the input used by parseFromString or in parsing from an included file. Closes #3865. Not a great fix, maybe there's something better that could be done, but this should at least avoid misleading messages.
* Merge pull request #3987 from wilx/masterJohn MacFarlane2017-10-22
|\ | | | | Support comments in Pandoc templates in Emacs pandoc-template-mode.
| * Support comments in Pandoc templates in Emacs pandoc-template-mode.Vaclav Haisman2017-10-22
|/
* Updated changelog.John MacFarlane2017-10-21
| | | | 11,681 words!
* SelfContained: data-background-image instead of data-background.John MacFarlane2017-10-20
| | | | Really closes #3979.
* Use doctemplates 0.2.1: allows `$--` line comments in templates.John MacFarlane2017-10-20
| | | | Closes #3806.
* LaTeX reader: be more forgiving in parsing command options.John MacFarlane2017-10-19
| | | | This was needed, for example, to make some minted options work.
* LaTeX reader: Strip off quotes in `\include` filenames.John MacFarlane2017-10-19
|
* LaTeX reader: support `\expandafter`.John MacFarlane2017-10-19
| | | | Closes #3983.
* LaTeX reader: handle `\DeclareRobustCommand`.John MacFarlane2017-10-19
| | | | | | Currently it's just treated as a synonym for `\newcommand`. Handles the second case mentioned in #3983.
* Clarify DATADIR in MANUALJohn MacFarlane2017-10-18
|
* Fix typo in changelogJohn MacFarlane2017-10-18
|
* Export Text.Pandoc.BCP47John MacFarlane2017-10-17
|
* Split list of authors from MANUAL.txt into separate file, AUTHORS.md.John MacFarlane2017-10-17
| | | | It was getting too long for a man page.
* Updated AUTHORSJohn MacFarlane2017-10-17
|
* pandoc.lua: destructure attr for Link and ImageAlbert Krewinkel2017-10-17
| | | | | | Make Attr values accessible through through the keys `identifier`, `classes` and `attributes`. This is already used in other elements with attributes and is now fixed for Link and Image.
* Merge pull request #3980 from bfirsh/skip-spaces-in-image-optionsJohn MacFarlane2017-10-17
|\ | | | | Latex reader: Skip spaces in image options
| * Latex reader: Skip spaces in image optionsBen Firshman2017-10-17
| |
| * Add tests for existing \includegraphics behaviourBen Firshman2017-10-17
|/
* SelfContained: handle data-background attribute on section.John MacFarlane2017-10-16
| | | | | | | | | This should help with #3979. In my test, I got a data uri for data-background. But it didn't actually work in the browser (the background image didn't show). Not sure whether this is a problem in reveal.js or a problem in pandoc...
* HTML writer: don't add data- prefix to unknown attributes beginning with data-.John MacFarlane2017-10-16
| | | | Or we'll get data-data-blah.
* Revised command test 3971 to work with Windows.John MacFarlane2017-10-16
|
* Improved handling of include files in LaTeX reader.John MacFarlane2017-10-16
| | | | | | | | | | | | | Previously `\include` wouldn't work if the included file contained, e.g., a begin without a matching end. We've changed the Tok type so that it stores a full SourcePos, rather than just a line and column. So tokens keeep track of the file they came from. This allows us to use a simpler method for includes, which doesn't require parsing the included document as a whole. Closes #3971.
* RST writer: correctly handle inline code containing backticks.John MacFarlane2017-10-16
| | | | | | (Use a :literal: role.) Closes #3974.
* RST writer: don't backslash-escape word-internal punctuation.John MacFarlane2017-10-16
| | | | Closes #3978.
* App: added --request-header option.John MacFarlane2017-10-15
|
* Remove openURL from Shared (API change).John MacFarlane2017-10-15
| | | | | | | | Now all the guts of openURL have been put into openURL from Class. openURL is now sensitive to stRequestHeaders in CommonState and will add these custom headers when making a request. It no longer looks at the USER_AGENT environment variable, since you can now set the `User-Agent` header directly.
* Class: add stRequestHeaders to CommonState, and setRequestHeader.John MacFarlane2017-10-15
|
* Handle unknown options in form `--latex-engine=foo`.John MacFarlane2017-10-15
| | | | | Previously these were not triggering the helpful message about option name changes.
* Merge pull request #3970 from d-dorazio/masterJohn MacFarlane2017-10-13
|\ | | | | markdown writer: always write bracketed_spans' attributes
| * markdown writer: always write bracketed_spans' attributesd-dorazio2017-10-13
| |
* | CommonMark writer: omit "fig:" prefix in image titles.John MacFarlane2017-10-13
|/ | | | | | This is used internally to indicate internal figures. See https://groups.google.com/d/msgid/pandoc-discuss/892c5a25-086a-4e19-b4c1-8 975cea8df0f@googlegroups.com?utm_medium=email&utm_source=footer
* .travis.yml - move 7.10 and 8.0 out of accepted failures.John MacFarlane2017-10-12
|
* .travis.yml - use -j2 on build.John MacFarlane2017-10-12
|
* More travis tweaks.John MacFarlane2017-10-12
|
* .travis.yml - try with -j1.John MacFarlane2017-10-12
|
* More travis tweaks: try without -j, add -O0 again.John MacFarlane2017-10-12
|
* .travis.yml - use --fast and --disable-optimization rather than -O0.John MacFarlane2017-10-12
|
* .travis.yml - use -v3 in cabal builds to debug.John MacFarlane2017-10-12
|
* .travis.yml tweaks: use ulimit, --ghc-options for cabal build.John MacFarlane2017-10-12
|
* appveyor.yml: added skip_commits.John MacFarlane2017-10-12
|
* Updated authors in MANUAL.txt.John MacFarlane2017-10-11
|
* ConTeXt writer: Use identifiers for chapters.John MacFarlane2017-10-11
| | | | Closes #3968.
* Travis: allow failure for ghc 7.10.3 build.John MacFarlane2017-10-11
|
* Merge pull request #3965 from labdsf/fb2poemJohn MacFarlane2017-10-11
|\ | | | | FB2 Writer: format LineBlock as poem
| * FB2 Writer: format LineBlock as poemAlexander Krotov2017-10-11
| | | | | | | | | | Previously writer produced one paragraph with <empty-line/> elements, which are not allowed inside <p> according to FB2 schema.