aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-05-11Org reader: add support for sub/superscript export optionsAlbert Krewinkel3-3/+63
Org-mode allows to specify export settings via `#+OPTIONS` lines. Disabling simple sub- and superscripts is one of these export options, this options is now supported.
2016-05-11Org reader: move parser state into separate moduleAlbert Krewinkel3-158/+233
The org reader code has become large and confusing. Extracting smaller parts into submodules should help to clean things up.
2016-05-09Merge pull request #2907 from tarleb/org-fixesJohn MacFarlane3-5/+14
Org fixes (reader and writer)
2016-05-09Org writer: print empty table rowsAlbert Krewinkel1-1/+1
Empty table rows should not be dropped from the output, so row-height is always set to be at least 1.
2016-05-09Org reader: fix inline-LaTeX regressionAlbert Krewinkel2-4/+13
The last fix for whitespace handling of inline LaTeX commands was incorrect, preventing correct recognition of inline LaTeX commands which contain spaces. This fix ensures that only trailing whitespace is cut off.
2016-05-09Merge pull request #2906 from roblabla/feature-mediaWikiTableHeaderSpacesJohn MacFarlane3-1/+14
Allow spaces before '!' in MediaWiki table header
2016-05-09Allow spaces before '!' in MediaWiki table headerroblabla3-1/+14
2016-05-05Merge pull request #2898 from tarleb/org-table-refactoringJohn MacFarlane2-64/+75
Org reader: table parsing code refactoring and fixes
2016-05-05Merge pull request #2900 from tarleb/org-symbol-fixJohn MacFarlane2-5/+11
Org reader: fix spacing after LaTeX-style symbols
2016-05-04Org reader: fix spacing after LaTeX-style symbolsAlbert Krewinkel2-5/+11
The org-reader was droping space after unescaped LaTeX-style symbol commands: `\ForAll \Auml` resulted in `∀Ä` but should give `∀ Ä` instead. This seems to be because the LaTeX-reader treats the command-terminating space as part of the command. Dropping the trailing space from the symbol-command fixes this issue.
2016-05-04Org reader: fix handling of empty table cells, rowsAlbert Krewinkel2-14/+29
This fixes Org mode parsing of some corner cases regarding empty cells and rows. Empty cells weren't parsed correctly, e.g. `|||` should be two empty cells, but would be parsed as a single cell containing a pipe character. Empty rows where parsed as alignment rows and dropped from the output. This fixes #2616.
2016-05-04Org reader: refactor rows-to-table conversionAlbert Krewinkel1-25/+25
This refactores the codes conversing a list table lines to an org table ADT. The old code was simplified and is now slightly less ugly.
2016-05-04Org reader: stop padding short table rowsAlbert Krewinkel2-28/+24
Emacs Org-mode doesn't add any padding to table rows. The first row (header or first body row) is used to determine the column count, no other magic is performed. The org reader was padding rows to the length of the longest table row. This was done due to a misunderstanding of how Org handles tables. This feature reflected how Org-mode handles tables when pressing <TAB>. The Org exporter however, which is what the reader should implement, doesn't do any of this. So this was a mis-feature that made the reader more complex and reduced comparability. It was hence removed.
2016-05-01Added docbook5 templates, test files to pandoc.cabal.John MacFarlane1-0/+3
2016-05-01Bump version to 1.17.1.John MacFarlane1-1/+1
We need a minor version bump because of the addition of `writerDocbook5` to `WriterOptions`.
2016-05-01README: Added docbook5 as output format.John MacFarlane1-22/+22
2016-05-01Added docbook5 template.John MacFarlane1-7/+7
2016-05-01Merge pull request #2890 from bcdevices/docbook5-writerJohn MacFarlane6-6/+1849
Docbook5 write support
2016-05-01Binary fmts throw PandocError on zip-archive failJesse Rosenthal2-3/+7
Commit 91dc3342 made `readDocx` throw PandocError if there was an unarchiving error. This extends that fix to `readOdt` and `readEPUB`.
2016-05-01LaTeX writer: use {} around options containing special chars.John MacFarlane1-4/+9
Closes #2892.
2016-05-01Docx Reader: Throw PandocError on unzip failureJesse Rosenthal1-4/+5
Previously, readDocx would error out if zip-archive failed. We change the archive extraction step from `toArchive` to `toArchiveOrFail`, which returns an Either value.
2016-04-29Docbook5 writer: Properly handle ulink/linkIvo Clarysse2-34/+37
2016-04-29Write out Docbook 5 namespaceIvo Clarysse3-7/+10
2016-04-29HTML writer: ensure mathjax link is added when math appears in footnote.John MacFarlane1-3/+2
Previously if a document only had math in a footnote, the MathJax link would not be added. Closes #2881.
2016-04-29Add docbook5 writer supportIvo Clarysse6-3/+1840
2016-04-27Revert "LaTeX writer: Add `\strut` to fix multiline tables"John MacFarlane2-47/+46
This reverts commit 4c684561ee0665b014e887ae559b7020e4e9f2d3. See https://groups.google.com/d/msg/pandoc-discuss/u6J-_aCProU/UufN3IYRAgAJ This should fix uneven spacing issues in multiline tables.
2016-04-26Merge pull request #2735 from mb21/patch-1John MacFarlane2-4/+4
LaTeX Writer: fix polyglossia to babel env mapping
2016-04-26Merge pull request #2829 from adunning/patch-1John MacFarlane2-8/+18
LaTeX writer: Add missing languages.
2016-04-26Merge pull request #2876 from shosti/org-code-indentJohn MacFarlane2-4/+47
Ignore leading space in org code blocks
2016-04-26LaTeX writer: ignore --incremental unless -t beamer.John MacFarlane1-1/+2
Closes #2843.
2016-04-26Ignore leading space in org code blocksEmanuel Evans2-4/+47
Fixes #2862 Also fix up tab handling for leading whitespace in code blocks.
2016-04-20Require texmath 0.8.6.2.John MacFarlane2-2/+2
Closes several texmath-related bugs: #2775, #2310, #2310. This fixes issues with sub/superscript positioning and matrix column alignment in docx.
2016-04-18rtack.yaml: use data-default 0.6.0.John MacFarlane1-0/+2
2016-04-18Allow data-default 0.6.0.John MacFarlane1-1/+1
2016-04-16Docx Reader: Tests for track-changes movingJesse Rosenthal5-0/+22
2016-04-15Docx Reader: parse `moveTo` and `moveFrom`Jesse Rosenthal1-2/+2
`moveTo` and `moveFrom` are track-changes tags that are used when a block of text is moved in the document. We now recognize these tags and treat them the same as `insert` and `delete`, respectively. So, `--track-changes=accept` will show the moved version, while `--track-changes=reject` will show the original version.
2016-04-10Markdown reader: Fix pandoc title blocks with lines ending in 2 spaces.John MacFarlane3-22/+26
Closes #2799. Also added -s to markdown-reader-more test.
2016-04-10Markdown + HTML readers: be more forgiving about unescaped &.John MacFarlane1-10/+15
We are now more forgiving about parsing invalid HTML with unescaped `&` as raw HTML. (Previously any unescaped `&` would cause pandoc not to recognize the string as raw HTML.) Closes #2410.
2016-04-08README - improved documentation of --columns option.John MacFarlane1-3/+3
2016-04-01LaTeX writer: Add missing languages.Andrew Dunning2-8/+18
Updates the list from the hyphenation files at <http://mirror.ctan.org/language/hyph-utf8/tex/generic/hyph-utf8/loadhyph/>.
2016-03-30Merge pull request #2828 from adunning/patch-1John MacFarlane1-0/+2
Recognize `la-x-classic` as Classical Latin.
2016-03-30Recognize `la-x-classic` as Classical Latin.Andrew Dunning1-0/+2
This allows one to access the hyphenation patterns at <http://mirrors.ctan.org/language/hyph-utf8/tex/generic/hyph-utf8/patterns/tex/hyph-la-x-classic.tex>, using its private language tag.
2016-03-29Use texmath >= 0.8.6.1.John MacFarlane2-2/+3
This fixes behavior of roots, e.g. `\sqrt[3]{x}`. See #2824.
2016-03-28stack.full.yaml: build local zip-archive, texmath.John MacFarlane1-1/+2
2016-03-27stack.full.yaml: also include local cmark-hs.John MacFarlane1-0/+1
2016-03-26EPUB writer: set 'navpage' variable on nav page.John MacFarlane1-1/+2
This allows templates to treat it differently.
2016-03-25Travis: use -fno-warn-unused-do-bind -Wall -Werror.John MacFarlane1-1/+1
2016-03-25Add --pedantic to stack build on travis.John MacFarlane1-1/+1
This turns on -Wall, -Werror. -Werror is already there for cabal builds, but for some reason travis isn't failing when errors occur.
2016-03-25Removed two superfluous lines.John MacFarlane1-2/+0
2016-03-24Updated changelog.John MacFarlane1-0/+3