aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)AuthorFilesLines
2012-07-22Renamed tests/markdown-tables -> tests/extra-tables.John MacFarlane2-0/+0
Added to cabal file.
2012-07-22Merge pull request #510 from mytskine/markdown-extraJohn MacFarlane2-0/+94
Markdown extra tables [part of the multi-markdown syntax for tables]
2012-07-22Removed fb2.math-webtex.fb2 tests.John MacFarlane1-2/+0
Test suite should not require net access to run.
2012-07-22FB2: support images embedded as data URIs + tests.Sergey Astanin2-0/+16
2012-07-22Test suite for FB2 writer.Sergey Astanin13-0/+80
2012-07-16Don't recognize inline-markup starts inside words.John MacFarlane2-1/+7
For example, "2*2 = 4*1" should not contain an emphasized section. Added test case for "Literal symbols". Closes #569.
2012-07-13Textile reader: properly handle links with surrounding brackets.John MacFarlane2-0/+3
Square brackets need to be used when the link isn't surrounded by spaces or punctuation, or when the URL ending may be ambiguous. Closes #564.
2012-06-27ConTeXt writer: don't escape `&`,`^`,`<`,`>`.John MacFarlane1-17/+16
Simplified escapes for `}` and `{` to `\{` and `\}`. Thanks to Aditya Mahajan.
2012-06-27MediaWiki writer: Avoid extra blank lines after sublists.John MacFarlane1-7/+0
Thanks to Gavin Beatty.
2012-06-26Don't escape `_` as `\letterunderscore{}` in ConTeXt.John MacFarlane1-2/+2
2012-06-08Updated tests for changes in LaTeX template.John MacFarlane3-3/+3
2012-06-05Updated tests for changes in LaTeX changes.John MacFarlane3-24/+21
2012-06-05Updated tests for changes in latex template.John MacFarlane3-45/+49
2012-06-03Added failing tests for note beginning with a citation.John MacFarlane4-4/+4
See issue #531.
2012-06-03Updated test suite.John MacFarlane3-46/+36
2012-05-29Textile reader: fix for `<notextile>` and `==`.paul.rivier2-0/+15
Closes #517.
2012-05-23Added (failing) tests for textual citations in footnotes.John MacFarlane4-4/+4
2012-05-16Markdown writer: Improved definition lists.John MacFarlane1-22/+22
* Use `:` form instead of `~`, for better compatibility with other markdown implementations. * Don't wrap the term, because it breaks definition lists.
2012-05-14LaTeX writer: More consistent interblock spacing.John MacFarlane4-6/+17
2012-05-09DocBook reader: More improvements, passes tests.John MacFarlane2-16/+16
2012-05-08DocBook reader: More test improvements.John MacFarlane2-2/+2
2012-05-08DocBook reader tests - further refinements.John MacFarlane1-4/+4
2012-05-08DocBook reader: More improvements, more tests pass.John MacFarlane2-32/+25
2012-05-08DocBook reader: Improved def lists with multiple defs.John MacFarlane1-11/+11
2012-05-08Improved docbook reader tests.John MacFarlane2-553/+40
2012-05-08Added docbook reader tests (still failing).John MacFarlane2-0/+2374
2012-04-30Improved spacing around LaTeX block environments.John MacFarlane3-3/+44
verbatim, itemize, description, enumerate.
2012-04-30LaTeX writer: Fixed spacing in quote environments.John MacFarlane3-8/+6
Closes #502. Previously you'd get: ~~~ hi \begin{quote} hi \end{quote} hi ~~~ Now we get: ~~~ hi \begin{quote} hi \end{quote} hi ~~~
2012-04-28Updated latex writer tests for new template.John MacFarlane3-0/+6
2012-04-27Merge pull request #485 from paul-r-ml/masterJohn MacFarlane2-5/+21
Textile reader update
2012-04-24textile reader improvements : better conformance to RedCloth Textile inlinespaul.rivier2-5/+6
2012-04-21LaTeX writer: Use fixltx2e package to provide '\textsubscript'.John MacFarlane3-2/+5
2012-04-17Textile reader quick clean-up and added support for LaTeX blocks and inlines.paul.rivier2-0/+15
2012-04-15Mardkown writer: escape < and $.John MacFarlane1-4/+4
2012-04-06Updated texinfo test to reflect template change.John MacFarlane1-1/+1
2012-04-03LaTeX writer: don't use eurosym package unless document has a €.John MacFarlane3-3/+0
2012-03-25Added PDF metadata (title,author) in LaTeX standalone + PDF output.John MacFarlane3-0/+18
Closes #459.
2012-03-25Oops! Forgot to munch whitespace / ignore body after directive.Greg Maslov2-1/+14
2012-03-24Add parsing support for the rST default-role directive.Greg Maslov2-1/+24
2012-03-24RST writer: Better handling of inline formatting.John MacFarlane1-3/+3
* `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.
2012-03-19Added test for one column table in LaTeX.John MacFarlane2-0/+12
2012-03-12Use {} around ctable caption. Closes #445.John MacFarlane1-3/+3
2012-03-07Updated tests for euro-related template changes.John MacFarlane3-0/+9
2012-03-03Updated tests for context template changes.John MacFarlane1-3/+6
2012-03-03Fixed LaTeX writer tests for last patch.John MacFarlane1-1/+1
2012-02-21Added tests for markdown-extra tablesFrançois Gannaz2-0/+94
A few simple tests for the tables as php-markdown defines them. Only tables whose lines begin with a "|" are tested.
2012-02-10LaTeX reader: Add ", " to suffix...John MacFarlane1-1/+1
if it doesn't start w space or punctuation. Otherwise we get no space between the year and the suffix in author-date styles.
2012-02-06LaTeX reader: use raw latex as fallback for Cites.John MacFarlane1-1/+1
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.
2012-02-04Improvements to LaTeX reader:John MacFarlane1-1/+2
* Handle \ps * Ignore ignorable commands in a uniform way. * Handle \P * handleIncludes skips \verb commands.
2012-02-04Complete rewrite of LaTeX reader.John MacFarlane4-40/+40
* 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.