diff options
| author | Emmanuel Ferdman <[email protected]> | 2025-10-10 11:14:59 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-10-10 10:14:59 +0200 |
| commit | 8a76a6fef1c76e163e86a9dd9e2b469dd4a05687 (patch) | |
| tree | ecd917552353d417ca544a644ec2640369568dec | |
| parent | d8354618c43ceb7ec917608229bdbf673c2469ad (diff) | |
Correct anchor references to `pandoc.text` module documentation (#11205)
Closes #11111.
| -rw-r--r-- | doc/lua-filters.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lua-filters.md b/doc/lua-filters.md index 4539e10f8..a6521b9f7 100644 --- a/doc/lua-filters.md +++ b/doc/lua-filters.md @@ -377,7 +377,7 @@ default modules. The following snippet is an example of code that might be useful when added to `init.lua`. The snippet adds all Unicode-aware -functions defined in the [`text` module](#module-text) to the +functions defined in the [`text` module](#module-pandoc.text) to the default `string` module, prefixed with the string `uc_`. ``` lua @@ -466,7 +466,7 @@ String library is not Unicode aware of the bytes `\240`, `\159`, `\154`, and `\178`, but **won't** match the "snowman" Unicode character. - Use the [pandoc.text](#module-text) module for Unicode-aware + Use the [pandoc.text](#module-pandoc.text) module for Unicode-aware transformation, and consider using using the lpeg or re library for pattern matching. |
