Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-05-03 | AsciiDoc writer: Correctly handle empty table cells. | John MacFarlane | 1 | -1/+2 | |
Closes #1245. | |||||
2014-05-03 | DocBook writer: Small tweaks to last commit. | John MacFarlane | 2 | -10/+4 | |
* Use isTightList from Shared. * Adjust writer test, since isTightList is a bit different from what was used before. Closes #1250. | |||||
2014-05-03 | Distinguish tight and loose lists in Docbook output | Neil Mayhew | 3 | -49/+236 | |
Determined by the first block of the first item being Plain. | |||||
2014-05-03 | LaTeX reader: Fixed regression introduced with last commit. | John MacFarlane | 1 | -10/+10 | |
Tests now pass again. | |||||
2014-05-03 | LaTeX reader: Better error messages with include files. | John MacFarlane | 2 | -56/+118 | |
Closes #1274. Rewrote handleIncludes. We now report the actual source file and position where the error occurs, even if it is included. We do this by inserting special commands, `\PandocStartInclude` and `\PandocEndInclude`, that encode this information in the preprocessing phase. Also generalized the types of a couple functions from `Text.Pandoc.Parsing`. | |||||
2014-05-02 | Fixed empty reference links. Closes #1186. | John MacFarlane | 3 | -4/+13 | |
Includes test. | |||||
2014-05-01 | Markdown reader: Make one-column pipe tables work. | John MacFarlane | 3 | -7/+35 | |
Closes #1218. | |||||
2014-05-01 | Merge pull request #1272 from tarleb/link-types | John MacFarlane | 3 | -9/+89 | |
Org reader: add support for custom link types | |||||
2014-05-01 | Org reader: Add support for custom link types | Albert Krewinkel | 2 | -8/+86 | |
Org allows users to define their own custom link types. E.g., in a document with a lot of links to Wikipedia articles, one can define a custom wikipedia link-type via #+LINK: wp https://en.wikipedia.org/wiki/ This allows to write [[wp:Org_mode][Org-mode]] instead of the equivallent [[https://en.wikipedia.org/wiki/Org_mode][Org-mode]]. | |||||
2014-04-30 | Updated tests for new LaTeX template. | John MacFarlane | 1 | -16/+6 | |
2014-04-30 | Use \setkeys{Gin}{} to set appropriate defaults for \includegraphics. | John MacFarlane | 1 | -11/+7 | |
In pandoc and beamer templates. Thanks to Yihui Xie. | |||||
2014-04-30 | RST reader: Some fixes to last change, and use "author" not "authors". | John MacFarlane | 2 | -7/+8 | |
(in metadata) | |||||
2014-04-30 | RST reader: Better handling of directives. | John MacFarlane | 1 | -12/+15 | |
* We now correctly handle field lists that are indented more than 3 spaces. * We treat an "aafig" directive as a code block with attributes, so it can be processed in a filter. (Closes #1212.) | |||||
2014-04-30 | ConTeXt writer: Improved autolinks. | John MacFarlane | 2 | -17/+9 | |
Closes #1270. | |||||
2014-04-30 | gitignore: Ignore cabal's sandbox files | Albert Krewinkel | 1 | -1/+3 | |
2014-04-29 | Require pandoc-types 1.12.3.3. | John MacFarlane | 1 | -3/+3 | |
Fixes #1269. | |||||
2014-04-29 | Added Cite to Arbitrary instance. | John MacFarlane | 1 | -5/+4 | |
See #1269. This reveals some test failures. | |||||
2014-04-29 | ADded SmallCaps to Arbitrary instance. | John MacFarlane | 1 | -1/+1 | |
2014-04-28 | Merge pull request #1268 from tarleb/copyright-housekeeping | John MacFarlane | 2 | -49/+10 | |
Copyright housekeeping | |||||
2014-04-27 | Allow html4 as synonym of html as reader. | John MacFarlane | 1 | -6/+7 | |
It already worked for writer. | |||||
2014-04-27 | Fix #1267. | John MacFarlane | 2 | -29/+29 | |
We now check the writerName for a lua script in pandoc.hs, so that lowercasing and format parsing aren't done. Note this behavior change: getWriter in Text.Pandoc no longer returns a custom writer on input "foo.lua". | |||||
2014-04-27 | A bit of refactoring that shouldn't change any semantics. | John MacFarlane | 1 | -10/+9 | |
In preparation for a fix to #1267. | |||||
2014-04-27 | README: Update variable defaults documentation | Albert Krewinkel | 1 | -3/+3 | |
The documented default values of variables now agree with their true default values as defined in Writer/HTML.hs. | |||||
2014-04-27 | COPYRIGHT: Remove outdated copyright statements | Albert Krewinkel | 1 | -37/+0 | |
Some files are no longer distributed with pandoc, the respective copyright and licensing information is removed. | |||||
2014-04-27 | COPYRIGHT: Specifiy the version of the GPL | Albert Krewinkel | 1 | -11/+9 | |
All code in pandoc licensed under the GPL version 2 or later is just marked as being licensed under the GPL. There are multiple versions of the GPL, most notably version 2, version 3 and the Affero GPL. As to avoid possible confusion, licensing info is updated to be more specific about the GPL and its version. | |||||
2014-04-26 | Update latex reader test for change in latex reader. | John MacFarlane | 1 | -1/+1 | |
We use 'author' for metadata, not 'authors'. | |||||
2014-04-26 | LaTeX reader: Made `\nocite` work. | John MacFarlane | 1 | -3/+6 | |
This adds nocite citations to a metadata field, `nocite`. These will appear in the bibliography but not in the text (unless you use a `$nocite$` variable in your template, of course). | |||||
2014-04-26 | HTML writer: improved detection of image links. | John MacFarlane | 1 | -1/+5 | |
Previously image links with queries were not recognized, leading to use of an embed tag rather than an img tag. | |||||
2014-04-25 | Updated changelog. | John MacFarlane | 1 | -0/+242 | |
2014-04-25 | Bump version to 1.12.4. | John MacFarlane | 1 | -1/+1 | |
2014-04-25 | Merge pull request #1265 from tarleb/org-links | John MacFarlane | 4 | -21/+131 | |
Improvements handling of internal links | |||||
2014-04-25 | LaTeX writer: Mark span contents with label if span has an ID | Albert Krewinkel | 1 | -7/+11 | |
Prepend `\label{span-id}` to span contents iff `span-id` is defined. | |||||
2014-04-25 | Org reader: Enable internal links | Albert Krewinkel | 2 | -12/+63 | |
Internal links in Org are possible by using an anchor-name as the target of a link: [[some-anchor][This]] is an internal link. It links <<some-anchor>> here. | |||||
2014-04-24 | EPUB writer: Fixed some idrefs to match changes in ids. | John MacFarlane | 1 | -3/+3 | |
2014-04-24 | Merge pull request #1260 from joehillen/tabs-in-cabalfile | John MacFarlane | 1 | -4/+4 | |
change tabs to spaces in pandoc.cabal | |||||
2014-04-24 | Markdown writer: Use proper escapes to avoid unwanted lists. | John MacFarlane | 2 | -16/+21 | |
Previously we used 0-width spaces, an ugly hack. Closes #980. | |||||
2014-04-24 | Bumped upper bounds for http-conduit and network. | John MacFarlane | 1 | -3/+3 | |
2014-04-24 | Require aeson >= 0.7. | John MacFarlane | 1 | -2/+2 | |
2014-04-24 | Render numbers in YAML metadata without decimals when possible. | John MacFarlane | 2 | -1/+7 | |
The change to aeson > 0.7 caused numbers to be rendered with decimals. This change causes them to be rendered without decimals wehn possible. | |||||
2014-04-24 | Org reader: Read anchors as empty spans | Albert Krewinkel | 1 | -0/+25 | |
Anchors (like <<this>>) are parsed as empty spans. | |||||
2014-04-24 | Org reader: Recognize plain and angle links | Albert Krewinkel | 2 | -9/+39 | |
This adds support for plain links (like http://zeitlens.com) and angle links (like <http://moltkeplatz.de>). | |||||
2014-04-24 | RST reader: Remove duplicate 'http' in PEP links | Albert Krewinkel | 1 | -1/+1 | |
The generated link to PEPs had a duplicate 'http://' in its URL. | |||||
2014-04-23 | EPUB writer: include extension in epub ids. | John MacFarlane | 1 | -6/+11 | |
This fixes a problem with duplicate extensions for fonts and images with the same base name but different extensions. Closes #1254. | |||||
2014-04-22 | change tabs to spaces in pandoc.cabal | Joe Hillenbrand | 1 | -4/+4 | |
2014-04-21 | Merge pull request #1257 from tarleb/mathmlinhtml-deprecation-warning | John MacFarlane | 1 | -10/+10 | |
MathMLinHTML: Fix deprecation warning | |||||
2014-04-20 | MathMLinHTML: Fix deprecation warning | gwern | 1 | -10/+10 | |
The use of `nodeValue` on `Attr` objects causes a deprecation warning in Firefox since version 7. This patch causes calls to `value` instead of `nodeValue` for all `Attr` objects. This closes #362. | |||||
2014-04-19 | Merge pull request #1256 from tarleb/org-reader-improvements | John MacFarlane | 5 | -253/+642 | |
Org reader improvements | |||||
2014-04-19 | Add license statement for org reader files | Albert Krewinkel | 1 | -0/+7 | |
This adds a brief note to the COPYRIGHT file, declaring the code in the org-reader files to be licensed under the GPL. | |||||
2014-04-19 | Org reader: Allow for compact definition lists | Albert Krewinkel | 2 | -2/+14 | |
Use `Text.Pandoc.Shared.compactify'DL` to allow for compact definition lists. | |||||
2014-04-19 | Move `compactify'DL` from Markdown reader into Shared | Albert Krewinkel | 2 | -20/+17 | |
The function `compactify'DL`, used to change the final definition item of a definition list into a `Plain` iff all other items are `Plain`s as well, is useful in many parsers and hence moved into Text.Pandoc.Shared. |