Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-04-12 | Org reader: Read linebreaks | Albert Krewinkel | 2 | -0/+8 | |
Linebreaks are marked by the string `\\` at the end of a line. | |||||
2014-04-12 | Org writer: Fix output for linebreaks | Albert Krewinkel | 2 | -2/+2 | |
Hard linebreaks in Org mode are represented by the string "\\" as the last characters in a line. Adds this feature to the Org-mode writer. | |||||
2014-04-12 | Org reader: Add support for figures | Albert Krewinkel | 2 | -8/+70 | |
Support for figures (images with name and caption) is added. | |||||
2014-04-11 | Beamer template: Consistent styles for figure and table captions | John MacFarlane | 1 | -5/+12 | |
Thanks to aaronwolen. | |||||
2014-04-11 | Beamer template: Adjust widths correctly for oversized images. | John MacFarlane | 1 | -7/+5 | |
Thanks to Garrick Aden-Buie for the patch. | |||||
2014-04-11 | HTML reader: Treat processing instructions & declarations as block. | John MacFarlane | 1 | -5/+9 | |
Previously these were treated as inline, and included in paragraph tags in HTML or DocBook output, which is generally not what is wanted. Closes #1233. | |||||
2014-04-11 | Merge pull request #1231 from tarleb/org-fix-subexpr | John MacFarlane | 2 | -19/+67 | |
Org reader: Fix parsing of sub-/superscript expressions | |||||
2014-04-11 | Org reader: Fix parsing of sub-/superscript expressions | Albert Krewinkel | 2 | -19/+67 | |
This fixes the org-reader's handling of sub- and superscript expressions. Simple expressions (like `2^+10`), expressions in parentheses (`a_(n+1)`) and nested sexp (like `a_(nested()parens)`) are now read correctly. | |||||
2014-04-10 | MediaWiki reader: Handle table rows containing just an HTML comment. | John MacFarlane | 1 | -1/+2 | |
Closes #1230. | |||||
2014-04-10 | Updated GHC versions in tested-with field. | John MacFarlane | 1 | -1/+1 | |
2014-04-10 | Merge pull request #1229 from tarleb/org-math-improved | John MacFarlane | 2 | -28/+80 | |
Org reader: Support more inline/display math variants | |||||
2014-04-10 | Org reader: Improve code by following HLint recommendations | Albert Krewinkel | 1 | -20/+24 | |
HLint's recommendations for better code are applied to the Org-mode reader code. | |||||
2014-04-10 | Org reader: Support more inline/display math variants | Albert Krewinkel | 2 | -8/+56 | |
Support all of the following variants as valid ways to define inline or display math inlines: - `\[..\]` (display) - `$$..$$` (display) - `\(..\)` (inline) - `$..$` (inline) This closes #1223. Again. | |||||
2014-04-09 | Fixed cabal path in travis config. | John MacFarlane | 1 | -1/+1 | |
2014-04-09 | More travis tweaks. | John MacFarlane | 1 | -3/+2 | |
2014-04-09 | Travis: gave up trying to test the sdist. | John MacFarlane | 1 | -12/+0 | |
For some reason hsb2hs was not found, even though it was built. | |||||
2014-04-09 | More travis tweaks. | John MacFarlane | 1 | -1/+1 | |
2014-04-09 | More travis tweaks. | John MacFarlane | 1 | -1/+1 | |
2014-04-09 | Travis build: remove 6.12; add -v2 to dependencies install. | John MacFarlane | 1 | -2/+2 | |
2014-04-09 | Travis: install hsb2hs. | John MacFarlane | 1 | -0/+1 | |
2014-04-09 | More travis tweaks. | John MacFarlane | 1 | -4/+4 | |
2014-04-09 | More travis changes. | John MacFarlane | 1 | -1/+1 | |
2014-04-09 | Fixed $CABAL in travis script. | John MacFarlane | 1 | -1/+1 | |
2014-04-09 | Updated travis script to test with multiple GHC versions. | John MacFarlane | 1 | -5/+42 | |
2014-04-09 | Merge pull request #1228 from tarleb/travis-fail-on-warnings | John MacFarlane | 1 | -1/+1 | |
Force failure of a Travis build if GHC produces warnings | |||||
2014-04-09 | Merge pull request #1227 from tarleb/editorconfig | John MacFarlane | 2 | -0/+15 | |
Add .editorconfig | |||||
2014-04-09 | Merge pull request #1226 from tarleb/org-emphasis-reader | John MacFarlane | 2 | -122/+283 | |
Org reader: Precise rules for the recognition of markup | |||||
2014-04-09 | Force failure of a Travis build if GHC produces warnings | Albert Krewinkel | 1 | -1/+1 | |
Pandoc should, as stated in CONTRIBUTING.md, always compile without warnings. This patch forces GHC to treat warnings like errors during Travis builds, making it possible to catch mistakes (like missing top-level type definitions) early. | |||||
2014-04-09 | Add .editorconfig | Albert Krewinkel | 2 | -0/+15 | |
Use EditorConfig to define a some basic styling rules for code. This should also help to reduce the number of commits introducing trailing whitespace. See http://editorconfig.org/ for details. | |||||
2014-04-09 | Org reader: Precise rules for the recognition of markup | Albert Krewinkel | 2 | -122/+283 | |
The inline parsers have been rewritten using the org source code as a reference. This fixes a couple of bugs related to erroneous markup recognition. | |||||
2014-04-07 | Textile reader: Improved link parsing. | John MacFarlane | 1 | -19/+15 | |
In particular we now pick up on attributes. Since pandoc links can't have attributes, we enclose the whole link in a span if there are attributes. Closes #1008. | |||||
2014-04-07 | Merge pull request #1224 from tarleb/org-math | John MacFarlane | 2 | -40/+80 | |
Org reader: Read inline math, recognize definition lists | |||||
2014-04-07 | Org reader: Support inline math (like $E=mc^2$) | Albert Krewinkel | 2 | -6/+20 | |
Closes #1223. | |||||
2014-04-06 | LaTeX writer: Workaround for level 4-5 headers in quotes. | John MacFarlane | 1 | -2/+14 | |
These previously produced invalid LaTeX: `\paragraph` or `\subparagraph` in a `quote` environment. This adds an `mbox{}` in these contexts to work around the problem. See http://tex.stackexchange.com/a/169833/22451. Closes #1221. | |||||
2014-04-06 | LaTeX reader: handle @{} and p{length} in tabular. | John MacFarlane | 1 | -2/+3 | |
The length is not actually recorded, but at least we get a table. Closes #1180. | |||||
2014-04-06 | Moved some doc files from data-files to extra-source-files. | John MacFarlane | 1 | -1/+3 | |
They aren't needed at runtime. We keep README and COPYRIGHT in data to ensure that they'll be available on all systems on which pandoc is installed. Closes #1123. | |||||
2014-04-06 | Org reader: Add support for definition lists | Albert Krewinkel | 2 | -4/+39 | |
2014-04-06 | Org reader: Minor code clean-up | Albert Krewinkel | 1 | -30/+21 | |
2014-04-05 | Give more useful error message if '-t pdf' is specified. | John MacFarlane | 1 | -16/+24 | |
Closes #1155. | |||||
2014-04-05 | HTML reader: Updated `closes` with rules from HTML5 spec. | John MacFarlane | 1 | -5/+12 | |
2014-04-05 | Textile reader: Better support for attributes. | John MacFarlane | 2 | -10/+13 | |
Instead of being ignored, attributes are now parsed and included in Span inlines. The output will be a bit different from stock textile: e.g. for `*(foo)hi*`, we'll get `<em><span class="foo">hi</span></em>` instead of `<em class="foo">hi</em>`. But at least the data is not lost. | |||||
2014-04-05 | Textile reader: Improved treatment of HTML spans (%). | John MacFarlane | 2 | -6/+2 | |
Closes #1115. | |||||
2014-04-05 | Removed whitespace at ends of lines. | John MacFarlane | 1 | -15/+15 | |
2014-04-05 | Text.Pandoc.PDF: Ensure that temp directories deleted on Windows. | John MacFarlane | 1 | -1/+4 | |
The PDF is now read as a strict bytestring, ensuring that process ownership will be terminated, so the temp directory can be deleted. Closes #1192. | |||||
2014-04-05 | README: Added note to --bibtex/--natbib: not for use in making PDF. | John MacFarlane | 1 | -2/+8 | |
Closes #1194. Thanks to nahoj. | |||||
2014-04-05 | Make it possible to run filters that aren't executable. | John MacFarlane | 1 | -2/+18 | |
Pandoc first tries to find the executable (searching the path if path isn't given). If it fails, but the file exists and has a .py, .pl, .rb, .hs, or .php extension, pandoc runs the filter using the appropriate interpreter. This should make it easier to use filters on Windows, and make it more convenient for everyone. Closes #1096. | |||||
2014-04-05 | Org reader: Added type signature. | John MacFarlane | 1 | -0/+1 | |
2014-04-05 | Fixed PDF print function in reveal.js template. | John MacFarlane | 1 | -5/+7 | |
Closes #1220. Thanks to kevinkenan. | |||||
2014-04-05 | Merge pull request #1219 from tarleb/org-images | John MacFarlane | 2 | -59/+141 | |
Org-reader: support inline images, clean-up code, fix bugs | |||||
2014-04-05 | Shared.openURL: Set proxy with value of http_proxy env variable. | John MacFarlane | 1 | -3/+11 | |
Note: proxies with non-root paths are not supported, because of limitations in http-conduit. Closes #1211. |