summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers/DokuWiki.hs
Commit message (Collapse)AuthorAge
* DokuWiki: write $..$ instead of <math>..</math>Tiziano Müller2015-07-13
| | | | | MathJax seems currently to be the only maintained math rendering extension for DokuWiki and it uses $..$ instead of <math>..</math>.
* DokuWiki writer: Use proper `<code>` tags for code blocks.John MacFarlane2015-06-07
| | | | Closes #2213.
* Updated copyright notices to -2015. Closes #2111.John MacFarlane2015-04-26
|
* Append newline to the LineBreak of various writersTim Lin2015-02-04
| | | | | | | | | | | | | | This change improves output formatting of content with a large amount of force line breaks, such as line-blocks. The following writers are affected: * Dokuwiki * HTML * EPUB (via HTML) * LaTeX * MediaWiki * OpenDocument * Texinfo This commit resolves #1924
* DokuWiki writer: fix external imagesTimothy Humphries2014-11-09
| | | | Handles #1739. Preface relative links with ":", absolute URIs without.
* DokuWiki writer: Better handling of block quotes.John MacFarlane2014-11-04
| | | | | | | This change ensures that multiple paragraph blockquotes are rendered using native `>` rather than as HTML. Closes #1738.
* DokuWiki writer: Make tables prettier by aligning columns.John MacFarlane2014-08-30
| | | | Also cleaned up crufty code and added tests.
* DokuWiki writer: Handle table cell alignments.John MacFarlane2014-08-30
| | | | Closes #1566.
* DokuWiki writer: Use backslash newlines in table cells.Jesse Rosenthal2014-08-30
| | | | | Write out strings in table cells with backslash linebreaks in place of newlines. We also want to remove the first two spaces of an indent in lists.
* DokuWiki Writer: Refactor to use Reader monadMatthew Pickering2014-08-27
|
* DokuWiki Writer: Hlint cleanupMatthew Pickering2014-08-27
|
* DokuWiki Writer: Qualified all importsMatthew Pickering2014-08-27
|
* Use raw HTML for complex block quotes.John MacFarlane2014-07-13
| | | | | | As far as I can see, dokuwiki markup is pretty limited in what can go in a `>` block quote: just a single line of paragraph text. (#1398)
* DokuWiki writer: Use raw HTML for complex lists...John MacFarlane2014-07-13
| | | | | | | | | | | | | | as in the mediawiki writer. The dokuwiki markup isn't able to handle multiple block-level items within a list item, except in a few special cases (e.g. code blocks, and these must be started on the same line as the preceding paragraph). So we fall back to raw HTML for these. Perhaps there is a better solution. We can "fake" multiple paragraphs within list items using hard line breaks (`\\`), but we must keep everything on one line. (#1398)
* DokuWiki writer: Normalize to collapse adjacent raw HTML blocks.John MacFarlane2014-07-13
|
* DokuWiki writer: More tweaks to email links. (#1398)John MacFarlane2014-07-13
|
* DokuWiki writer: Use pointy brackets for email links.John MacFarlane2014-07-13
| | | | (#1398)
* Dokuwiki writer: More idiomatic code for escaping.John MacFarlane2014-07-13
|
* DokuWiki writer: More raw HTML fixes. (#1398)John MacFarlane2014-07-13
| | | | | | * Use uppercase HTML tags for block-level content, lowercase for inline. * Newline before closing HTML tag.
* DokuWiki writer: Fix raw inlines and blocks.John MacFarlane2014-07-13
| | | | | | | * mediawiki > dokuwiki * ignore raw content other than html or dokuwiki. (#1398)
* Merge branch 'claremacrae-dokuwiki'.John MacFarlane2014-07-13
|\ | | | | | | | | Use removeFormatting from Shared instead of the custom unfancy function.
| * DokuWiki writer: Remove broken formatting from headings (#1398)Clare Macrae2014-07-08
| |
| * Put myself as maintainer (#1398)Clare Macrae2014-07-08
|/
* DokuWiki writer: Span no longer swallows textClare Macrae2014-07-02
|
* DokuWiki writer: Remove todos that I have already done.Clare Macrae2014-07-02
|
* DokuWiki writer: Retain unknown RawBlock and RawInline textClare Macrae2014-07-02
| | | This added \cite and \begin latex to the testuite output.
* DokuWiki output: Implement blockquotes properly Clare Macrae2014-07-02
| | | TODO Also implement nested blockquotes.
* DokuWiki writer: remove unused codeClare Macrae2014-07-02
|
* Remove stray <div> and </div> from DokuWiki output (#386)Clare Macrae2014-07-01
|
* Improved HTML Blocks in DokuWiki output (#386)Clare Macrae2014-07-01
| | | | For example, this fixes the display of a broken table, and it also fixes the various HTML horizontal rules.
* Disable warnings about unused parameters.Clare Macrae2014-06-30
|
* Updated Copyright year, for consistency with MediaWiki.hsClare Macrae2014-06-29
|
* Updated DokuWiki code and tests to work with latest code from jgm.Clare Macrae2014-06-29
| | | | | | | | | The new code was got from inspecting changes in MediaWiki.hs This slightly changes the output of Div blocks, but I'm not convinced the original behaviour was really correct anyway. The code for handling Span does nothing for now, until I can work out the desired behaviour, and add tests for it.
* Implement definition lists in dokuwiki writer (#386) - credit: James Smaldon claremacrae2013-08-28
|
* Fix some warnings in dokuwiki writer (#386)claremacrae2013-08-19
|
* Bullet and ordered lists now always simple in dokuwiki writer (#386)claremacrae2013-08-19
|
* Removed unnecessary line-break after hard break in dokuwiki writer (#386)claremacrae2013-08-19
|
* Stop plain text ** and __ becoming formatting in dokuwiki writer (#386)claremacrae2013-08-18
|
* Stop plain text // becoming an italic marker in dokuwiki writer (#386)claremacrae2013-08-18
| | | | | 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.
* Treat inline code blocks like <code> instead of <tt> in dokuwiki writer (#386)claremacrae2013-08-18
| | | | | 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.
* Nasty hack to stop C comments in inline code becoming italics in dokuwiki ↵claremacrae2013-08-17
| | | | writer (#386)
* Fixed inlined code in dokuwiki writer (#386)claremacrae2013-08-17
|
* Don't add entities in <code> blocks in dokuwiki writer (#386)claremacrae2013-08-17
|
* Implement <code> blocks in dokuwiki writer (#386)claremacrae2013-08-17
|
* Implement table headings in dokuwiki writer (#386)claremacrae2013-08-17
|
* Initial implementation of tables in dokuwiki writer (#386)claremacrae2013-08-11
| | | Todo: alignment, and headings
* Implement strikeout in dokuwiki writer (#386)claremacrae2013-08-06
|
* Implement footnotes in dokuwiki writer (#386)claremacrae2013-07-28
|
* Removed incorrect entity conversion in dokuwiki writer (#386)claremacrae2013-07-28
|
* Implemented linebreaks in dokuwiki writer (#386)claremacrae2013-07-28
|