John MacFarlane
13fc2b5598
Changelog typo.
2017-12-28 22:49:59 -08:00
John MacFarlane
246e8f081a
Update lua-filters.md and the tool that generates it.
2017-12-28 22:02:59 -08:00
John MacFarlane
108e429c88
Fixed some doc comments in data/pandoc.lua.
2017-12-28 21:55:46 -08:00
John MacFarlane
6afdc89699
Remove redundant import.
2017-12-28 21:51:07 -08:00
John MacFarlane
ac8e72a95d
Merge pull request #4170 from oltolm/opendocument
...
improve formatting of formulas in OpenDocument
2017-12-28 22:30:25 -07:00
John MacFarlane
bc8b4de3e8
Update changelog.
2017-12-28 21:25:10 -08:00
John MacFarlane
12b792ba73
Revised benchmark so it doesn't use FileTree constructor.
2017-12-28 21:21:36 -08:00
John MacFarlane
a8128831cf
Use latest pandoc-citeproc.
2017-12-28 21:14:15 -08:00
John MacFarlane
da64e5baa4
Class: make FileTree opaque.
...
This forces uses to interact with it using
`insertInFileTree` and `getFileInfo`, which normalize
file names.
2017-12-28 16:39:52 -08:00
John MacFarlane
346b10392f
Update docs on filters.
2017-12-28 16:39:52 -08:00
John MacFarlane
8b575dbf84
Filter changes.
...
* Previously we ran all lua filters before JSON filters.
* Now we run filters in the order they are presented on the
command line, whether lua or JSON.
* The type of `applyFilters` has changed (incompatible API change).
* `applyLuaFilters` has been removed (incompatible API change).
* Bump version to 2.1.
See #4196 .
2017-12-28 16:39:52 -08:00
John MacFarlane
9029206715
Makefile tweaks
2017-12-28 16:39:30 -08:00
John MacFarlane
c45f3fe47f
Update RELEASE_CHECKLIST.
2017-12-28 16:12:37 -08:00
John MacFarlane
4496b0da0f
Makefile: add update-website target
2017-12-28 16:12:32 -08:00
John MacFarlane
f61a8454f2
Update man page.
2017-12-28 15:57:59 -08:00
John MacFarlane
0cf342df5a
Update changelog.
2017-12-28 15:57:34 -08:00
John MacFarlane
e4f1bf88e9
Merge pull request #4212 from iredwards/master
...
clarify default html output for --section-divs
2017-12-28 16:42:35 -07:00
John MacFarlane
6db422abbe
Revert "Revert "Travis: removed lts-9 build.""
...
This reverts commit 915775b8b0
.
2017-12-28 15:31:01 -08:00
Richard Edwards
560855dd83
Merge pull request #1 from iredwards/iredwards-patch-1
...
clarify default html output for --section-divs
2017-12-28 15:29:53 -08:00
John MacFarlane
915775b8b0
Revert "Travis: removed lts-9 build."
...
This reverts commit 2278cd5e77
.
2017-12-28 15:29:16 -08:00
Richard Edwards
eabb47335a
clarify default html output for --section-divs
...
In Pandoc v2 using --section-divs and -t html results in <section>s, not <div>s, by default, as was the case for v1.9.
This change to the Manual emphasizes that you must use -t html4 if you want divs, otherwise you get sections.
2017-12-28 15:27:16 -08:00
oltolm
19bab48dcc
improve formatting of formulas in OpenDocument
2017-12-28 22:10:04 +01:00
John MacFarlane
98fd9a978a
Alphabetical order Extension constructors.
...
This makes them appear in order in `--list-extensions`.
2017-12-28 12:23:46 -08:00
John MacFarlane
e10864d9d5
Changed format of --list-extensions.
...
Now the + or - occurs first.
2017-12-28 12:12:22 -08:00
John MacFarlane
3494b6efd3
Powerpoint writer tests: use IO.
...
Otherwise we can't find the data files when compiled
with -embed_data_files.
2017-12-28 12:06:38 -08:00
John MacFarlane
d5770b7496
Moved makeCanoncial definition out of ifdef!
...
Also added slide2 to the default pptx, and reordered
the data files in pandoc.cabal.
2017-12-28 11:03:53 -08:00
John MacFarlane
60ace79b03
Class: use makeCanonical for normalization in FileTree and data files.
2017-12-28 10:47:09 -08:00
John MacFarlane
51b7fe85a8
Added data/docx/word/comments.xml to pandoc.cabal data files.
2017-12-28 10:31:37 -08:00
John MacFarlane
fa79e003b3
Use insertInFileTree in powerpoint test.
2017-12-28 10:26:54 -08:00
John MacFarlane
ddd6a89247
Text.Pandoc.Class: add insertInFileTree (API change).
...
This gives a pure way to insert an ersatz file into a FileTree.
In addition, we normalize paths both on insertion and on
lookup, so that "foo" and "./foo" will be judged equivalent.
2017-12-28 10:23:09 -08:00
John MacFarlane
999dd2a239
linux package build: use stack lts-9.
...
Also break up the build into three chunks for better
cacheability.
2017-12-28 09:25:01 -08:00
John MacFarlane
2dd01b2071
Fixed warning in powerpoint writer test.
2017-12-28 08:54:42 -08:00
John MacFarlane
90296d7e96
LaTeX writer: Use \endhead after \toprule in headerless tables.
...
Closes #4207 .
2017-12-28 08:53:54 -08:00
John MacFarlane
3c93ac5cf0
LaTeX reader: be more tolerant of &
character.
...
This allows us to parse unknown tabular environments
as raw LaTeX. Closes #4208 .
2017-12-28 08:41:53 -08:00
John MacFarlane
2278cd5e77
Travis: removed lts-9 build.
2017-12-28 08:30:21 -08:00
Jesse Rosenthal
c1fbf7257b
PowerPoint writer: Introduce beginning of tests
...
This is the beginning of a test suite for the powerpoint
writer. Initial tests are for the number of slides.
Note that at the moment it does not test against corruption in
Microsoft PowerPoint; it just tests that certain outcomes work as
expected. More tests will be added.
This test framework uses the PandocPure monad introduced with Pandoc 2.0.
2017-12-28 10:51:03 -05:00
Albert Krewinkel
c6b5d65161
Org smart test: drop superfluous import
...
Keeps GHC 7.8 and GHC 7.10 happy.
2017-12-28 14:51:03 +01:00
Albert Krewinkel
e5c8b65004
Org reader: support minlevel option for includes
...
The level of headers in included files can be shifted to a higher level
by specifying a minimum header level via the `:minlevel` parameter. E.g.
`#+include: "tour.org" :minlevel 1` will shift the headers in tour.org
such that the topmost headers become level 1 headers.
Fixes : #4154
2017-12-28 14:16:04 +01:00
Albert Krewinkel
2d443ecb07
Break-up org reader test file
...
The org reader test file had grown large, to the point that editor
performance was negatively affected in some cases. The tests are spread
over multiple submodules, and re-combined into a tasty TestTree in the
main org reader test file.
2017-12-28 14:15:58 +01:00
Alexander Krotov
0fd7ed0cab
FB2 writer: add cover image specified by "cover-image" meta
...
Fixes #4195
2017-12-28 16:03:18 +03:00
Jesse Rosenthal
52a4cf6699
PowerPoint writer: Obey slide level option
2017-12-28 07:47:07 -05:00
John MacFarlane
bbf1192b86
Travis: do a stack build with lts-9. Use system ghc.
2017-12-27 23:41:31 -08:00
John MacFarlane
64b72e68a0
stack.lts9.yaml: added some necessary build-deps.
2017-12-27 23:20:09 -08:00
John MacFarlane
c715fa7875
Added stack.lts9.yaml for building with lts 9 and ghc 8.0.2.
2017-12-27 23:15:20 -08:00
John MacFarlane
62bc894f9e
Update appveyor to use stack.yaml.
2017-12-27 21:25:07 -08:00
John MacFarlane
40a55728bb
Docker build: upgrade stack first.
2017-12-27 20:55:15 -08:00
John MacFarlane
ffa3d7160e
Removed stack.pkg.yaml.
...
We only really need stack.yaml; we can put flag settings
for pandoc-citeproc there.
Also use ghc-8.0.2 in dockerized linux build. This is
the only version available for alpine so far.
2017-12-27 20:21:37 -08:00
John MacFarlane
4371b07cd1
Added 'make trypandoc' target
2017-12-27 14:09:48 -08:00
John MacFarlane
18da5443ff
Update RELEASE-CHECKLIST.
2017-12-27 14:09:28 -08:00
John MacFarlane
ba6c193457
Fix warning.
2017-12-27 13:38:44 -08:00