Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-04-13 | Improve lua module documentation | Albert Krewinkel | 1 | -140/+315 | |
2017-04-12 | Lua module: provide multi-param Inline constructors | Albert Krewinkel | 1 | -4/+160 | |
Instead of taking only a single argument containing the pre-packed element contents, `Inline` constructors now take the same arguments as the respective filter and `Custom` writer function | |||||
2017-04-11 | Lua filter: use custom StackValue Inline instance | Albert Krewinkel | 1 | -4/+0 | |
Inline elements are no longer pushed and pulled via aeson's Value. | |||||
2017-03-20 | Lua filters (#3514) | Albert Krewinkel | 1 | -0/+144 | |
* 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. |