summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAge
...
* | Textile reader: fix for `<notextile>` and `==`.paul.rivier2012-05-29
| | | | | | | | Closes #517.
* | Added (failing) tests for textual citations in footnotes.John MacFarlane2012-05-23
| |
* | Markdown writer: Improved definition lists.John MacFarlane2012-05-16
| | | | | | | | | | | | | | * Use `:` form instead of `~`, for better compatibility with other markdown implementations. * Don't wrap the term, because it breaks definition lists.
* | LaTeX writer: More consistent interblock spacing.John MacFarlane2012-05-14
| |
* | DocBook reader: More improvements, passes tests.John MacFarlane2012-05-09
| |
* | DocBook reader: More test improvements.John MacFarlane2012-05-08
| |
* | DocBook reader tests - further refinements.John MacFarlane2012-05-08
| |
* | DocBook reader: More improvements, more tests pass.John MacFarlane2012-05-08
| |
* | DocBook reader: Improved def lists with multiple defs.John MacFarlane2012-05-08
| |
* | Improved docbook reader tests.John MacFarlane2012-05-08
| |
* | Added docbook reader tests (still failing).John MacFarlane2012-05-08
| |
* | Improved spacing around LaTeX block environments.John MacFarlane2012-04-30
| | | | | | | | verbatim, itemize, description, enumerate.
* | LaTeX writer: Fixed spacing in quote environments.John MacFarlane2012-04-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #502. Previously you'd get: ~~~ hi \begin{quote} hi \end{quote} hi ~~~ Now we get: ~~~ hi \begin{quote} hi \end{quote} hi ~~~
* | Updated latex writer tests for new template.John MacFarlane2012-04-28
| |
* | Merge pull request #485 from paul-r-ml/masterJohn MacFarlane2012-04-27
|\ \ | | | | | | Textile reader update
| * | textile reader improvements : better conformance to RedCloth Textile inlinespaul.rivier2012-04-24
| | |
| * | Textile reader quick clean-up and added support for LaTeX blocks and inlines.paul.rivier2012-04-17
| | |
* | | LaTeX writer: Use fixltx2e package to provide '\textsubscript'.John MacFarlane2012-04-21
|/ /
* | Mardkown writer: escape < and $.John MacFarlane2012-04-15
| |
* | Updated texinfo test to reflect template change.John MacFarlane2012-04-06
| |
* | LaTeX writer: don't use eurosym package unless document has a €.John MacFarlane2012-04-03
| |
* | Added PDF metadata (title,author) in LaTeX standalone + PDF output.John MacFarlane2012-03-25
| | | | | | | | Closes #459.
* | Oops! Forgot to munch whitespace / ignore body after directive.Greg Maslov2012-03-25
| |
* | Add parsing support for the rST default-role directive.Greg Maslov2012-03-24
| |
* | RST writer: Better handling of inline formatting.John MacFarlane2012-03-24
| | | | | | | | | | | | | | | | | | * `hi*there*hi` now gets rendered properly as `hi\ *there*\ hi` * Unnecessary '\ ' are avoided around :math:, :sub:, :sup: * Implemented most of the rules in http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#inline-markup-recognition-rules, though some unnecessary '\ ' may be inserted when unicode quotes are used.
* | Added test for one column table in LaTeX.John MacFarlane2012-03-19
| |
* | Use {} around ctable caption. Closes #445.John MacFarlane2012-03-12
| |
* | Updated tests for euro-related template changes.John MacFarlane2012-03-07
| |
* | Updated tests for context template changes.John MacFarlane2012-03-03
| |
* | Fixed LaTeX writer tests for last patch.John MacFarlane2012-03-03
|/
* LaTeX reader: Add ", " to suffix...John MacFarlane2012-02-10
| | | | | if it doesn't start w space or punctuation. Otherwise we get no space between the year and the suffix in author-date styles.
* LaTeX reader: use raw latex as fallback for Cites.John MacFarlane2012-02-06
| | | | | | | This way you can still get the raw latex back, even if you don't process with citeproc. Previously, cites were not visible at all unless you specified --biblio on the command line and converted them using citeproc, or used --natbib or --biblatex.
* Improvements to LaTeX reader:John MacFarlane2012-02-04
| | | | | | | * Handle \ps * Ignore ignorable commands in a uniform way. * Handle \P * handleIncludes skips \verb commands.
* Complete rewrite of LaTeX reader.John MacFarlane2012-02-04
| | | | | | | | | | | | | | | | | | | | | | | * The new reader is more robust, accurate, and extensible. It is still quite incomplete, but it should be easier now to add features. * Text.Pandoc.Parsing: Added withRaw combinator. * Markdown reader: do escapedChar before raw latex inline. Otherwise we capture commands like \{. * Fixed latex citation tests for new citeproc. * Handle \include{} commands in latex. This is done in pandoc.hs, not the (pure) latex reader. But the reader exports the needed function, handleIncludes. * Moved err and warn from pandoc.hs to Shared. * Fixed tests - raw tex should sometimes have trailing space. * Updated lhs-test for highlighting-kate changes.
* Updated citation tests with en-dashes.John MacFarlane2012-01-30
|
* Put date in YYYY-MM-DD format if possible for HTML, docx metadata.John MacFarlane2012-01-28
| | | | Added normalizeDate to Text.Pandoc.Shared.
* Docbook writer: Use sect1, sect2, etc. instead of section.John MacFarlane2012-01-27
|
* Depend on highlighting-kate 0.5.John MacFarlane2012-01-25
| | | | This uses styleToCss instead of styleToHtml.
* Added Docx writer.John MacFarlane2012-01-19
| | | | | | | | | | | * New module `Text.Pandoc.Docx`. * New output format `docx`. * Added reference.docx. * New option `--reference-docx`. The writer includes support for highlighted code blocks and math (which is converted from TeX to OMML using texmath's new OMML module).
* Improved citation tests.John MacFarlane2012-01-13
|
* Markdown reader: Fix parsing of consecutive lists.John MacFarlane2012-01-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Pandoc previously behaved like Markdown.pl for consecutive lists of different styles. Thus, the following would be parsed as a single ordered list, rather than an ordered list followed by an unordered list: 1. one 2. two - one - two This patch makes pandoc behave more sensibly, parsing this as two lists. Any change in list type (ordered/unordered) or in list number style will trigger a new list. Thus, the following will also be parsed as two lists: 1. one 2. two a. one b. two Since we regard this as a bug in Markdown.pl, and not something anyone would ever rely on, we do not preserve the old behavior even when `--strict` is selected.
* New treatment of dashes in --smart mode.John MacFarlane2012-01-01
| | | | | | | | | | | | * `---` is always em-dash, `--` is always en-dash. * pandoc no longer tries to guess when `-` should be en-dash. * A new option, `--old-dashes`, is provided for legacy documents. Rationale: The rules for en-dash are too complex and language-dependent for a guesser to work reliably. This change gives users greater control. The alternative of using unicode isn't very good, since unicode em- and en- dashes are barely distinguishable in a monospace font.
* Support for math in RST reader and writer.John MacFarlane2011-12-31
| | | | | | | | | | | | | | | | Inline math uses the :math:`...` construct. Display math uses .. math:: ... or if multilin .. math:: ... These seem to be supported now by rst2latex.py.
* Updated context tests.John MacFarlane2011-12-30
|
* Updated latex tests.John MacFarlane2011-12-30
|
* Updated ConTeXt tests.John MacFarlane2011-12-30
|
* Unicode reference ID in biblio test.John MacFarlane2011-12-29
|
* Updated tests for changes to HTML note back references.John MacFarlane2011-12-29
|
* Added 'beamer' as an output format.John MacFarlane2011-12-29
| | | | | | | | | Beamer output uses the default LaTeX template, with some customizations via variables. Added `writerBeamer` to `WriterOptions`. Added `--beamer` option to `markdown2pdf`.
* Preserve attributes in highlighted HTML.John MacFarlane2011-12-28
| | | | | | | | The container element will have the classes, id, and key-value attributes you specified in the delimited code block. Previously these were stripped off.