Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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-28 | Implement definition lists in dokuwiki writer (#386) - credit: James Smaldon | claremacrae | 1 | -9/+12 | |
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-23 | Added failing test for definition list output in dokuwiki writer (#386) | claremacrae | 1 | -45/+19 | |
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-19 | Bullet and ordered lists now always simple in dokuwiki writer (#386) | claremacrae | 1 | -28/+15 | |
2013-08-19 | Removed unnecessary line-break after hard break in dokuwiki writer (#386) | claremacrae | 1 | -2/+1 | |
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-18 | Stop plain text ** and __ becoming formatting in dokuwiki writer (#386) | claremacrae | 1 | -1/+1 | |
2013-08-18 | Stop plain text // becoming an italic marker in dokuwiki writer (#386) | claremacrae | 1 | -1/+1 | |
When the original document had text containing //, this was previously included, unchanged, in the dokuwiki output, and this interacted badly with later, intended, formating text. | |||||
2013-08-18 | Treat inline code blocks like <code> instead of <tt> in dokuwiki writer (#386) | claremacrae | 2 | -7/+7 | |
Done because I noticed that in the Autolinks section of writer.dokuwiki, the URL in inlined code was getting auto-linked, when it wasn't supposed to. This also meant that any inline code examples that had text that looked like dokuwiki syntax could break the formatting of later text. | |||||
2013-08-17 | Nasty hack to stop C comments in inline code becoming italics in dokuwiki ↵ | claremacrae | 1 | -1/+1 | |
writer (#386) | |||||
2013-08-17 | Add more tests for dokuwiki writer (#386) | claremacrae | 2 | -2/+5 | |
2013-08-17 | Add extra pair of test files for dokuwiki writer (#386) | claremacrae | 3 | -1/+8 | |
I've found some incorrect behaviours with the dokuwiki output, for which extra test cases will be needed - that aren't covered by the standard pandoc test input files. | |||||
2013-08-17 | Fixed inlined code in dokuwiki writer (#386) | claremacrae | 1 | -6/+6 | |
2013-08-17 | Don't add entities in <code> blocks in dokuwiki writer (#386) | claremacrae | 1 | -10/+10 | |
2013-08-17 | Implement <code> blocks in dokuwiki writer (#386) | claremacrae | 1 | -15/+15 | |
2013-08-17 | Implement table headings in dokuwiki writer (#386) | claremacrae | 1 | -5/+5 | |
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-11 | Initial implementation of tables in dokuwiki writer (#386) | claremacrae | 1 | -191/+26 | |
Todo: alignment, and headings | |||||
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-06 | Implement strikeout in dokuwiki writer (#386) | claremacrae | 1 | -1/+1 | |
2013-08-03 | MediaWiki writer: Use native mediawiki tables instead of HTML. | John MacFarlane | 1 | -191/+125 | |
Closes #720. | |||||
2013-07-28 | Implement footnotes in dokuwiki writer (#386) | claremacrae | 1 | -9/+7 | |
2013-07-28 | Removed incorrect entity conversion in dokuwiki writer (#386) | claremacrae | 1 | -8/+8 | |
2013-07-28 | Implemented linebreaks in dokuwiki writer (#386) | claremacrae | 1 | -1/+2 | |
2013-07-26 | Convert bullet and numbered lists in dokuwiki writer (#386) | Clare Macrae | 1 | -23/+23 | |
2013-07-26 | Corrected part of the failing test for lists in dokuwiki writer (#386) | Clare Macrae | 1 | -2/+2 | |
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-15 | Add failing test for bullet and numbered lists in dokuwiki writer (#386) | Clare Macrae | 1 | -52/+52 | |
2013-07-15 | Implement conversion of images in dokuwiki writer (#386) | Clare Macrae | 1 | -2/+2 | |
2013-07-15 | Weak implementation of hyperlinks for dokuwiki (#386) | Clare Macrae | 1 | -6/+6 | |
TODO Simplify the code | |||||
2013-07-14 | Fixing wrong numbered-list indentation in open document format | Alexander Kondratskiy | 1 | -19/+19 | |
2013-07-14 | Implemented horizontal rule for dokuwiki (#386) | Clare Macrae | 1 | -13/+13 | |
2013-07-14 | Implemented Emphasis (italic) and Strong (bold) for dokuwiki (#386) | Clare Macrae | 1 | -18/+18 | |
2013-07-14 | Implemented correct output of dokuwiki (#386) | Clare Macrae | 1 | -31/+31 | |