summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAge
* Added warnings for non-rendered blocks to some writers.John MacFarlane2017-02-17
|
* Fix indirect hyperlink targets. Closes #512.John MacFarlane2017-02-15
|
* ZimWiki writer: removed internal formatting from note and table cells, ↵Alex Ivkin2017-02-15
| | | | because ZimWiki does not support it (#3446)
* LaTeX reader: properly handle column prefixes/suffixes.John MacFarlane2017-02-13
| | | | | | | | | For example, in \begin{tabular}{>{$}l<{$}>{$}l<{$} >{$}l<{$}} each cell will be interpreted as if it has a `$` before its content and a `$` after (math mode).
* Add Org writer unit testsAlexander Krotov2017-02-12
|
* RST reader/writer: properly handle table captions.John MacFarlane2017-02-11
| | | | | | Currently the support for the `.. table` directive is a bit limited; we don't yet support the `widths` field. But at least you can have a proper captioned table.
* Fixed small bug in RST list parsing.John MacFarlane2017-02-11
| | | | | | | | | | See #3432. Previously the parser didn't handle properly this case: * - a - b * - c - d
* Use new warnings throughout the code base.John MacFarlane2017-02-11
|
* Removed --parse-raw and readerParseRaw.John MacFarlane2017-02-06
| | | | | | | | | | | | | | | | | | | | | | | These were confusing. Now we rely on the +raw_tex or +raw_html extension with latex or html input. Thus, instead of --parse-raw -f latex we use -f latex+raw_tex and instead of --parse-raw -f html we use -f html+raw_html
* Use unicode-math by default in default.latex template.John MacFarlane2017-02-06
| | | | | | | mathspec will be used in xelatex if the `mathspec` variable is set; otherwise unicode-math will be used. Thanks to Václav Haisman.
* Handle language in inline code with --listings.John MacFarlane2017-02-05
| | | | Closes #3422.
* More smart escaping tests.John MacFarlane2017-02-04
|
* Consolidated some common functions in Tests.Helper.John MacFarlane2017-02-04
|
* Added first command test to cabal metadata and repo.John MacFarlane2017-02-04
|
* Org writer: reduce to two spaces after bulletsAlbert Krewinkel2017-02-04
| | | | | | | | The org writer was inserting two spaces after list bullets. Emacs Org-mode defaults to a single space, so behavior is changed to reflect this. Closes: #3417
* Added new test framework Tests.Command.John MacFarlane2017-02-04
| | | | | | | Any files added under test/command will be treated as shell tests (see smart.md for an example). This makes it very easy to add regression tests etc.
* Added skeleton for Tests.Command.John MacFarlane2017-02-04
|
* Moved tests/ -> test/.John MacFarlane2017-02-04