Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-03-20 | Lua filters (#3514) | Albert Krewinkel | 1 | -0/+34 | |
* Add `--lua-filter` option. This works like `--filter` but takes pathnames of special lua filters and uses the lua interpreter baked into pandoc, so that no external interpreter is needed. Note that lua filters are all applied after regular filters, regardless of their position on the command line. * Add Text.Pandoc.Lua, exporting `runLuaFilter`. Add `pandoc.lua` to data files. * Add private module Text.Pandoc.Lua.PandocModule to supply the default lua module. * Add Tests.Lua to tests. * Add data/pandoc.lua, the lua module pandoc imports when processing its lua filters. * Document in MANUAL.txt. | |||||
2017-03-15 | Use tasty-golden for golden tests in Old. | John MacFarlane | 1 | -39/+52 | |
2017-03-14 | Command tests: just findPandoc once. | John MacFarlane | 1 | -4/+4 | |
2017-03-14 | Removed unneeded import. | John MacFarlane | 1 | -1/+0 | |
2017-03-14 | Got rid of distracting warning in test output. | John MacFarlane | 1 | -2/+2 | |
2017-03-14 | Small test plumbing improvement. | John MacFarlane | 1 | -11/+11 | |
2017-03-14 | Use tasty for tests rather than test-framework. | John MacFarlane | 26 | -131/+128 | |
2017-03-10 | Add Muse writer (#3489) | Alexander Krotov | 2 | -0/+276 | |
* Add Muse writer * Advertise new Muse writer * Muse writer: add regressions tests | |||||
2017-03-07 | Speed up Native writer quickcheck tests. | John MacFarlane | 1 | -2/+4 | |
2017-03-07 | Small change to unbalanced bracket test to speed up test suite. | John MacFarlane | 1 | -1/+1 | |
2017-03-04 | Stylish-haskell automatic formatting changes. | John MacFarlane | 24 | -120/+113 | |
2017-03-01 | LaTeX writer: always add hypertarget when there's a non-empty identifier. | John MacFarlane | 1 | -1/+1 | |
Previously the hypertargets were only added when there was actually a link to that identifier. Closes #2719. | |||||
2017-02-12 | Add Org writer unit tests | Alexander Krotov | 1 | -0/+25 | |
2017-02-11 | Use new warnings throughout the code base. | John MacFarlane | 1 | -1/+1 | |
2017-02-06 | Removed --parse-raw and readerParseRaw. | John MacFarlane | 1 | -1/+1 | |
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 | |||||
2017-02-04 | Consolidated some common functions in Tests.Helper. | John MacFarlane | 3 | -81/+52 | |
2017-02-04 | Added new test framework Tests.Command. | John MacFarlane | 1 | -17/+57 | |
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. | |||||
2017-02-04 | Added skeleton for Tests.Command. | John MacFarlane | 1 | -0/+91 | |
2017-02-04 | Moved tests/ -> test/. | John MacFarlane | 23 | -0/+5271 | |