diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-09-26 20:20:09 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-09-26 20:20:09 -0700 |
commit | 9a47c7863b7c9d23928e51fd23b8ebc7ac684d16 (patch) | |
tree | ddb6daaed76ffca1442e989bcd1c60ede60b9674 /doc | |
parent | 3fe4aad5a16545a92088510a00d2109a04fd25b8 (diff) | |
download | pandoc-9a47c7863b7c9d23928e51fd23b8ebc7ac684d16.tar.gz |
Lua filters: set global FORMAT instead of args.
This changes the type of runLuaFilter.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua-filters.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/lua-filters.md b/doc/lua-filters.md index 5e43afb26..16f6bfd56 100644 --- a/doc/lua-filters.md +++ b/doc/lua-filters.md @@ -132,6 +132,10 @@ Elements without matching functions are left untouched. See [module documentation](pandoc-module.html) for a list of pandoc elements. +The global `FORMAT` is set to the format of the pandoc writer +being used (`html5`, `latex`, etc.), so the behavior of a filter +can be made conditional on the eventual output format. + # Pandoc Module The `pandoc` lua module is loaded into the filter's lua |