aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAlbert Krewinkel <[email protected]>2025-09-04 16:36:57 +0200
committerAlbert Krewinkel <[email protected]>2025-09-04 16:40:07 +0200
commit204ea63107fda83c4b0d002fc26a311237200773 (patch)
tree4742d6f237e63e03ec3f797a1f920a8f91b61ee0 /doc
parent226f765e762dba2c0ba60e98998cfab2a9e6d2b0 (diff)
doc/lua-filters.md: remove outdated notes about `lpeg`/`re` globals.
The globals hold the same values that are returned by `require 'lpeg'` and `require 're'`, respectively. This was changed in pandoc 3.3.
Diffstat (limited to 'doc')
-rw-r--r--doc/lua-filters.md8
1 files changed, 0 insertions, 8 deletions
diff --git a/doc/lua-filters.md b/doc/lua-filters.md
index bb55c6efe..4539e10f8 100644
--- a/doc/lua-filters.md
+++ b/doc/lua-filters.md
@@ -319,10 +319,6 @@ variables.
unless it has been configured by the package maintainer to
rely on a system-wide installation.
- Note that the result of `require 'lpeg'` is not necessarily
- equal to this value; the `require` mechanism prefers the
- system's lpeg library over the built-in version.
-
`re`
: Contains the LPeg.re module, which is built on top of LPeg
and offers an implementation of a [regex engine]. Pandoc
@@ -330,10 +326,6 @@ variables.
configured by the package maintainer to rely on a system-wide
installation.
- Note that the result of `require 're` is not necessarily
- equal to this value; the `require` mechanism prefers the
- system's lpeg library over the built-in version.
-
[LPeg homepage]: http://www.inf.puc-rio.br/~roberto/lpeg/
[regex engine]: http://www.inf.puc-rio.br/~roberto/lpeg/re.html