Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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. | |||||
2013-09-01 | Use registerHeader in RST and LaTeX readers. | John MacFarlane | 8 | -69/+69 | |
This will give automatic unique identifiers, unless `-auto_identifiers` is specified. | |||||
2013-08-26 | Added markdown citation parsing test. | John MacFarlane | 2 | -0/+21 | |
2013-08-25 | Merge pull request #961 from nougad/add_latex_listings_label | John MacFarlane | 2 | -0/+14 | |
Write id for code block to label attr in latex when listing is used | |||||
2013-08-25 | Removed tests relating to citation processing. | John MacFarlane | 7 | -1360/+0 | |
2013-08-24 | Removed dependency on citeproc-hs. | John MacFarlane | 1 | -14/+0 | |
Going forward we'll use pandoc-citeproc, as an external filter. The `--bibliography`, `--csl`, and `--citation-abbreviation` fields have been removed. Instead one must include `bibliography`, `csl`, or `csl-abbrevs` fields in the document's YAML metadata. The filter can then be used as follows: pandoc --filter pandoc-citeproc The `Text.Pandoc.Biblio` module has been removed. Henceforth, `Text.CSL.Pandoc` from pandoc-citations can be used by library users. The Markdown and LaTeX readers now longer format bibliographies and citations. That must be done using `processCites` or `processCites'` from Text.CSL.Pandoc. All bibliography-related fields have been removed from `ReaderOptions` and `WriterOptions`: `writerBiblioFiles`, `readerReferences`, `readerCitationStyle`. API change. | |||||
2013-08-22 | Write id for code block to label attr in latex when listing is used | Florian Eitel | 2 | -0/+14 | |
The code: ~~~{#test} asdf ~~~ gets compiled to html: <pre id="test"> asdf </pre> So it is possible to link to the identifier `test` But this doesn't happen on latex When using the listings package (`--listings`) it is possible to set the identifier using the `label=test` property: \begin{lstlisting}[label=id] hi \end{lstlisting} And this is exactly what this patch is doing. Modified LaTeX Reader/Writer and added tests for this. | |||||
2013-08-20 | Merge branch 'altcite' | John MacFarlane | 4 | -46/+68 | |
2013-08-20 | Create Cite element even if no matching reference in the biblio. | John MacFarlane | 4 | -46/+68 | |
* Add ??? as fallback text for non-resolved citations. * Biblio: Put references (including a header at the end of the document, if one exists) inside a Div with class "references". This gives some control over styling of references, and allows scripts to manipulate them. * Markdown writer: Print markdown citation codes, and disable printing of references, if `citations` extension is enabled. NOTE: It would be good to improve what citeproc-hs does for a nonexistent key. | |||||
2013-08-19 | Scale LaTeX tables so they don't exceed columnwidth. | John MacFarlane | 1 | -32/+32 | |
2013-08-18 | Adjusted writers and tests for change in parsing of div/span. | John MacFarlane | 13 | -98/+167 | |
Textile, MediaWiki, Markdown, Org, RST will emit raw HTML div tags for divs. Otherwise Div and Span are "transparent" block containers. | |||||
2013-08-16 | LaTeX writer: Avoid problem with footnotes in unnumbered headers. | John MacFarlane | 1 | -0/+6 | |
Closes #940. Added test case. | |||||
2013-08-16 | Updated tests for latest pandoc-types changes. | John MacFarlane | 11 | -11/+11 | |
2013-08-14 | Updated for removed unMeta, unFormat in pandoc-types. | John MacFarlane | 12 | -76/+76 | |
2013-08-11 | ODT/OpenDocument writer: Minor changes for ODF 1.2 conformance. | John MacFarlane | 1 | -1/+1 | |
See #939. We leave the nonconforming contextual-spacing attribute, which is provided by LibreOffice itself and seems to be supported. | |||||
2013-08-10 | Added Tests.Walk. | John MacFarlane | 2 | -0/+49 | |
This verifies that walk and query match the generic traversals. | |||||
2013-08-10 | Updated tests for new Format. | John MacFarlane | 7 | -65/+65 | |
2013-08-10 | Adjustments for new Format newtype. | John MacFarlane | 1 | -4/+4 | |
2013-08-03 | MediaWiki writer: Use native mediawiki tables instead of HTML. | John MacFarlane | 1 | -191/+125 | |
Closes #720. | |||||
2013-07-25 | Textile reader: Improved handling of `<pre>` blocks. | John MacFarlane | 1 | -1/+1 | |
* Closed #927 (a bug in which `<pre>` in certain contexts was not recognized as a code block). * Remove internal HTML tags in code blocks, rather than printing them verbatim. * Parse attributes on `<pre>` tag for code blocks. | |||||
2013-07-23 | Test suite changes for new highlighting-kate version. | John MacFarlane | 3 | -3/+3 | |
2013-07-21 | LaTeX reader: Don't add spurious ", " to citation suffixes. | John MacFarlane | 2 | -19/+19 | |
This is added when needed in Text.Pandoc.Biblio anyway. | |||||
2013-07-14 | Fixing wrong numbered-list indentation in open document format | Alexander Kondratskiy | 1 | -19/+19 | |
2013-07-13 | Updated a test whose output changed due to last commit. | John MacFarlane | 1 | -4/+1 | |
2013-07-01 | Markdown writer: Commas are okay in plain yaml scalars. | John MacFarlane | 1 | -1/+1 | |
It's just commas with brackets that can cause problems. | |||||
2013-07-01 | Markdown writer: Render yaml title block fields in alpha order. | John MacFarlane | 1 | -1/+1 | |
This makes the output predictable; previously it varied across implementations. | |||||
2013-07-01 | Improvements to yaml title block writer. | John MacFarlane | 1 | -3/+3 | |
2013-07-01 | Switched order of fields in yaml header (writer test). | John MacFarlane | 1 | -2/+2 | |
2013-07-01 | Revert "Markdown writer: Don't include variables in metadata." | John MacFarlane | 1 | -1/+1 | |
This reverts commit 0ec8573347d53e0cba70552a50dba697f39216b6. | |||||
2013-07-01 | Markdown writer: Don't include variables in metadata. | John MacFarlane | 1 | -1/+1 | |