summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* MediaWiki reader: Support `<math>` tag.John MacFarlane2012-09-12
|
* Added tests for mediawiki lists.John MacFarlane2012-09-12
|
* More mediawiki reader tests.John MacFarlane2012-09-12
|
* Added some tests for mediawiki reader.John MacFarlane2012-09-12
|
* MediaWiki reader: Updated todo comments.John MacFarlane2012-09-12
|
* MediaWiki reader: Support `<syntaxhighlight>` tag.John MacFarlane2012-09-12
|
* HTML writer: Don't print `<dt>` unless term is non-empty.John MacFarlane2012-09-12
|
* MediaWiki reader: Properly handle :, ::, :::...John MacFarlane2012-09-12
|
* MediaWiki reader: Handle def lists without terms (: lines).John MacFarlane2012-09-12
|
* MediaWiki reader: Improvements to list parsing and HTML tag handling.John MacFarlane2012-09-12
|
* MediaWiki reader: Support skipped level in lists.John MacFarlane2012-09-12
| | | | | | | | | For example: # one # two ### skip! ### skip
* MediaWiki reader: Fixed charsInTags parser to use innerText.John MacFarlane2012-09-12
|
* Minor fixes to MediaWiki reader.John MacFarlane2012-09-12
|
* Added basic mediawiki reader.John MacFarlane2012-09-12
| | | | | Text.Pandoc.Readers.MediaWiki module, tests/mediawiki-reader.{txt,native}.
* Export 'nested' in Parsing.John MacFarlane2012-09-12
|
* Text.Pandoc.Parsing: Handle trailing slash in 'uri'.John MacFarlane2012-09-12
|
* HTML writer: Improve line breaks with `<dd>` tags.John MacFarlane2012-09-12
| | | | | We now put a newline between `</dd>` and `<dd>` when there are multiple definitions.
* Changed mathjax cdn url so it doesn't use https.John MacFarlane2012-09-12
| | | | | | (This caused problems when used with --self-contained.) See #609.
* LaTeX reader: Better error messages for environments.John MacFarlane2012-09-09
| | | | | Now it should tell you that it was looking for \end{env}, instead of giving "unknown parse error."
* LaTeX reader: guard against "begin"/"end" in blockCommand.John MacFarlane2012-09-09
|
* LaTeX reader: Guard against "begin", "end" in inlineCommand.John MacFarlane2012-09-09
| | | | Removed these from list of inline commands.
* HTML reader: Handle nested `<q>` tags properly.John MacFarlane2012-09-09
|
* Parsing: Generalized type of withQuoteContext.John MacFarlane2012-09-09
|
* HTML reader: Parse <q> as Quoted DoubleQuote.John MacFarlane2012-09-09
|
* README: Properly escape `$` characters.John MacFarlane2012-09-08
| | | | | Otherwise they mess up the LaTeX benchmark, which uses a version of README converted to LaTeX.
* RST reader: Allow dashes as separator in simple tables.John MacFarlane2012-09-08
| | | | Closes #555.
* Fixed spacing in context writer test.John MacFarlane2012-09-08
|
* Added papersize variable to latex, context templates.John MacFarlane2012-09-08
|
* LaTeX reader: Support obeylines environment.John MacFarlane2012-09-06
| | | | Closes #604.
* LaTeX reader: Use curly quotes for bare straight quotes.John MacFarlane2012-09-06
|
* LaTeX reader: Fixed parsing of paragraphs beginning with a group.John MacFarlane2012-09-06
| | | | | | | Previously a paragraph beginning ``` {``}hello{''} ``` would be parsed as two paragraphs. Closes #606.
* Textile reader: Improved speed of hyphenedWords.John MacFarlane2012-09-06
| | | | | This speeds up the textile reader by about a factor of 4. But the reader is still very slow, compared to others readers.
* Makefile: Build profiling libraries in 'prep', added 'prof' target.John MacFarlane2012-09-06
|
* Removed obsolete comment.John MacFarlane2012-09-06
|
* Fixed footnotes bug in textile.John MacFarlane2012-09-06
| | | | | | | This affected notes occuring before punctuation, e.g. `foo[1].`. Closes #518.
* Made --id-prefix work in DocBook as well as HTML.John MacFarlane2012-09-06
| | | | Closes #607.
* Removed pcre3.dll from windows package.John MacFarlane2012-09-05
| | | | | It isn't needed unless highlighting-kate is compilled with the pcre-light flag. By default, regex-prce-builtin is used.
* Docx writer: Fixed bug with nested lists.John MacFarlane2012-09-05
| | | | | | | | | | | | Previously a list like 1. one - a - b 2. two would come out with a bullet instead of "2." Thanks to Russell Allen for reporting the bug.
* LaTeX reader: Handle \slash command.John MacFarlane2012-09-04
| | | | Closes #605.
* Added (failing) test case for #518.John MacFarlane2012-08-25
|
* Beamer template: Remove English-centric strings in section pages.John MacFarlane2012-08-25
| | | | | | | | Section pages used to have "Section" and a number as well as the section title. Now they just have the title. Similarly for part and subsection. Closes #566.
* EPUB: Use title instead of "Title Page" in contents.John MacFarlane2012-08-25
| | | | | | Otherwise we have a hard-coded English string, which looks strange in ebooks written in other languages. Using the title for this entry seems a good solution. Closes #572.
* Merge commit 'd25656571a4662a4e67b195daed69e77d80c4c2c'John MacFarlane2012-08-23
|\ | | | | | | | | Conflicts: src/Text/Pandoc/Writers/ODT.hs
| * Set ODT title propertyArlo O'Keeffe2012-07-13
| |
* | Don't strip meta and link elements in epub metadata.John MacFarlane2012-08-23
| | | | | | | | | | | | | | | | | | Per http://idpf.org/epub/30/spec/epub30-publications.html#sec-metadata-elem, a metadata element can contain not just Dublin Core elements but also meta and link elements, but Pandoc currently strips those out. Patch from aberrancy. Closes #589.
* | Implemented Ext_backtick_code_blocks.John MacFarlane2012-08-21
| | | | | | | | This is the variant github prefers.
* | Added Ext_fenced_code_attributes.John MacFarlane2012-08-21
| |
* | Changed nomenclature, delimited -> fenced code blocks.John MacFarlane2012-08-21
| |
* | Added Ext_abbrevations for PHP markdown style abbreviation keys.John MacFarlane2012-08-19
| | | | | | | | | | | | Note: pandoc does not have an abbreviation element (yet) and so currently when this extension is enabled, it just causes pandoc to skip the abbrevation keys.
* | Man writer: Escape - as \-.John MacFarlane2012-08-18
| | | | | | | | | | | | | | | | | | | | Unescaped -'s become hyphens, while \-'s are left as ascii minus signs. That is preferable for use with command-line options. See http://lintian.debian.org/tags/hyphen-used-as-minus-sign.html. Thanks to Andrea Bolognani for bringing the issue to our attention.