Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-04-11 | Org reader: Fix parsing of sub-/superscript expressions | Albert Krewinkel | 1 | -9/+30 | |
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 | Org reader: Support more inline/display math variants | Albert Krewinkel | 1 | -6/+30 | |
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 | Org reader: Precise rules for the recognition of markup | Albert Krewinkel | 1 | -2/+23 | |
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 | Org reader: Support inline math (like $E=mc^2$) | Albert Krewinkel | 1 | -0/+4 | |
Closes #1223. | |||||
2014-04-06 | Org reader: Add support for definition lists | Albert Krewinkel | 1 | -3/+23 | |
2014-04-05 | Textile reader: Better support for attributes. | John MacFarlane | 1 | -1/+1 | |
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 | 1 | -1/+1 | |
Closes #1115. | |||||
2014-04-05 | Merge pull request #1219 from tarleb/org-images | John MacFarlane | 1 | -2/+14 | |
Org-reader: support inline images, clean-up code, fix bugs | |||||
2014-04-05 | Org reader: Support inline images | Albert Krewinkel | 1 | -2/+10 | |
2014-04-05 | Org reader: Fix parsing of nested inlines | Albert Krewinkel | 1 | -0/+4 | |
Text such as /*this*/ was not correctly parsed as a strong, emphasised word. This was due to the end-of-word recognition being to strict as it did not accept markup chars as part of a word. The fix involves an additional parser state field, listing the markup chars which might be parsed as part of a word. | |||||
2014-04-04 | DocBook reader/writer tests: use "authorgroup". | John MacFarlane | 2 | -16/+20 | |
2014-04-01 | MediaWiki reader: Fixed bug in certain nested lists. | John MacFarlane | 2 | -0/+7 | |
The bug: If a level 2 list was followed by a level 1 list, the first item of the level 1 list would be lost. Closes #1213. | |||||
2014-04-01 | Added HTML reader tests for empty strong, emph. | John MacFarlane | 2 | -0/+2 | |
2014-04-01 | Tests updated to reflect changes to readers. | Matthew Pickering | 5 | -124/+132 | |
Previously normalisation was handled by the `normalizeSpaces` function. The behavoir of the builder monoid is slightly different and melds together more items such as consecutive strings and spaces adjacent to line breaks. The tests have been changed to reflect this. All relevant tests passed when the string melding line of the builder monoid was commented out. | |||||
2014-03-24 | RTF writer: Fixed tables cells containing paragraphs. | John MacFarlane | 1 | -92/+92 | |
This moves \intbl after \pard. | |||||
2014-03-24 | Merge pull request #1068 from jaimeMF/mw-images-langs | John MacFarlane | 2 | -0/+3 | |
MediaWiki reader: Accept image links in more languages | |||||
2014-03-05 | HTML writer: Add colgroup around col tags. | John MacFarlane | 1 | -0/+6 | |
Also affects EPUB writer. Closes #877. | |||||
2014-03-04 | Merge branch 'master' of https://github.com/mb21/pandoc into mb21-master | John MacFarlane | 3 | -1/+3772 | |
2014-03-04 | Add a simple Emacs Org-mode reader | Albert Krewinkel | 2 | -0/+535 | |
The basic structure of org-mode documents is recognized; however, org-mode features like todo markers, tags etc. are not supported yet. | |||||
2014-02-28 | InDesign ICML Writer | mb21 | 3 | -1/+3772 | |
2014-02-20 | Revised tests for new latex template. | John MacFarlane | 3 | -3/+3 | |
2014-02-15 | Enhanced Pandoc's support for rST roles. | Merijn Verstraaten | 2 | -0/+34 | |
rST parser now supports: - All built-in rST roles - New role definition - Role inheritance Issues/TODO: - Silently ignores illegal fields on roles - Silently drops class annotations for roles - Only supports :format: fields with a single format for :raw: roles, requires a change to Text.Pandoc.Definition.Format to support multiple formats. - Allows direct use of :raw: role, rST only allows indirect (i.e., inherited use of :raw:). | |||||
2014-01-22 | Fixed mediawiki ordered list parsing. | John MacFarlane | 1 | -2/+2 | |
Closes #1122. | |||||
2014-01-07 | Updated tests for latest texmath. | John MacFarlane | 1 | -1/+1 | |
2014-01-01 | HTML reader: Parse name/content pairs from meta tags as metadata. | John MacFarlane | 1 | -1/+1 | |
Closes #1106. | |||||
2013-12-27 | Removed old MarkdownTest_1.0.3 directory (not currently used). | John MacFarlane | 45 | -3905/+0 | |
Closes #1104. | |||||
2013-12-19 | HLint: redundant parens | Henry de Valence | 2 | -3/+3 | |
Remove parens enclosing a single element. | |||||
2013-12-19 | HLint: Remove lambdas. | Henry de Valence | 1 | -2/+2 | |
2013-12-09 | Don't use tilde code blocks with braced attributes in gfm output. | John MacFarlane | 1 | -2/+2 | |
A consequence of this change is that the backtick form will be preferred in general if both are enabled. I think that is good, as it is much more widespread than the tilde form. Closes #1084. | |||||
2013-12-06 | Small change to HTML reader tests. | John MacFarlane | 1 | -9/+9 | |
"$" is now a special character. | |||||
2013-12-04 | Add booktabs package for LaTeX tables | Jose Luis Duran | 1 | -45/+45 | |
[ci skip] | |||||
2013-11-30 | Markdown writer: Fix rendering of tight sublists. | John MacFarlane | 1 | -0/+4 | |
E.g. - foo - bar - baz Previously a spurious blank line was included before the last item. Closes #1050. | |||||
2013-11-30 | ODT writer: Add `draw:name` attribute to `draw:frame` elements. | John MacFarlane | 1 | -2/+2 | |
This is reported to be necessary to avoid an error from recent versions of Libre Office when files contain more than one image. Closes #1069. Thanks to wmanley for reporting and diagnosing the problem. | |||||
2013-11-30 | Fixed tests for new ConTeXt writer behavior. | John MacFarlane | 2 | -9/+10 | |
2013-11-24 | MediaWiki reader: Accept image links in more languages | Jaime Marquínez Ferrándiz | 2 | -0/+3 | |
In some of the Wikipedia versions the local version of 'File' is used (for example 'Archivo' in Spanish) | |||||
2013-11-22 | ConTeXt writer: Use setupcaption to separate style from content. | John MacFarlane | 1 | -1/+3 | |
Instead of adding 'nunumber' every time we place a figure... Closes #1067. | |||||
2013-11-22 | Fixed bug with intraword emphasis. | John MacFarlane | 1 | -0/+5 | |
Closes #1066. | |||||
2013-11-18 | LaTeX reader: Parse contents of curly quotes or matched `"` as quotes. | John MacFarlane | 1 | -1/+1 | |
2013-11-17 | MediaWiki reader: Add automatic header identifiers. | John MacFarlane | 1 | -29/+29 | |
2013-11-12 | HTML/EPUB footnotes: Put `<sup>` tag inside `<a>` tags. | John MacFarlane | 1 | -3/+3 | |
This allows better control of formatting, since the `<a>` tags have a distinguishing class. Closes #1049. | |||||
2013-11-01 | TexMath: Export readTeXMath', which attends to display/inline. | John MacFarlane | 5 | -5/+5 | |
Deprecate readTeXMath, and use readTeXMath' in all the writers. Require texmath >= 0.6.5. | |||||
2013-10-21 | Fix definition lists with internal links in terms (closes #1032). | John MacFarlane | 1 | -0/+5 | |
This fix puts braces around a term that contains an internal link, to avoid problems with square brackets. | |||||
2013-10-20 | Pass the buildDir as first argument to test suite. | John MacFarlane | 2 | -5/+10 | |
Allows test suite to work with cabal sandboxes. Previously we hard-coded the build directory. | |||||
2013-10-18 | MediaWiki reader: Trim contents of `<math>` tags. | John MacFarlane | 2 | -0/+3 | |
Otherwise we get problems when converting to markdown. Closes #1027. | |||||
2013-09-24 | Updated opendocument tests. | John MacFarlane | 1 | -52/+65 | |
2013-09-14 | Markdown reader: unresolved citations fall back to original text. | John MacFarlane | 1 | -14/+14 | |
Not ???. Reason: Less surprising, especially for people using @ as in twitter. | |||||
2013-09-11 | Mediawiki: Parse an image + caption in a para by itself as a figure. | John MacFarlane | 1 | -4/+4 | |
2013-09-06 | Markdown writer: Fixed bugs in YAML header output. | John MacFarlane | 1 | -1/+1 | |
2013-09-01 | Markdown reader: Don't autolink a bare URI that is followed by `</a>`. | John MacFarlane | 1 | -1/+4 | |
Closes #937. | |||||
2013-09-01 | Use registerHeader in Textile reader. | John MacFarlane | 1 | -29/+29 | |
This produces automatic header identifiers, unless `auto_identifiers` extension is disabled. Closes #967. |