aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Krewinkel <[email protected]>2022-10-10 12:07:32 +0200
committerAlbert Krewinkel <[email protected]>2022-10-10 12:09:09 +0200
commit8f4308f2e575a5251c7b3e5091bb6e1392091d2f (patch)
treeda7d8a83e969597826d93b527961524bd8d29d4c
parenta5ffaaa4136f11378c0c7741309edb9fd53e17d8 (diff)
doc/lua-filters.md: deprecate PANDOC_WRITER_OPTIONS in custom writers
-rw-r--r--doc/lua-filters.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/lua-filters.md b/doc/lua-filters.md
index 62023782b..15097abcb 100644
--- a/doc/lua-filters.md
+++ b/doc/lua-filters.md
@@ -269,9 +269,12 @@ variables.
be picked up by pandoc.
([WriterOptions](#type-writeroptions))
- This variable is also set in custom writers, but, starting
- with pandoc 3.0, contains only the default options. The actual
- writer options can be accessed via new-style writers.
+ Accessing this variable in **custom writers** is
+ **deprecated**. Starting with pandoc 3.0, it is set to a
+ placeholder value (the default options) in custom writers.
+ Access to the actual writer options is provided via the
+ `Writer` or `ByteStringWriter` function, to which the options
+ are passed as the second function argument.
*Since: pandoc 2.17*