diff options
| author | (quasar) nebula <qznebula@protonmail.com> | 2026-03-31 18:47:51 -0300 |
|---|---|---|
| committer | (quasar) nebula <qznebula@protonmail.com> | 2026-03-31 18:47:51 -0300 |
| commit | de1563b9a06991450d88fd697ee03c947606a075 (patch) | |
| tree | 6c08af020c3bea23cd16678a255ff29f7dbdfe37 /src/common-util/wiki-data.js | |
| parent | 358d180eb018e0ca667d763d25ac8b4dd4244081 (diff) | |
inconsequential eslint fixes
Diffstat (limited to 'src/common-util/wiki-data.js')
| -rw-r--r-- | src/common-util/wiki-data.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common-util/wiki-data.js b/src/common-util/wiki-data.js index ff325b7a..74222e9e 100644 --- a/src/common-util/wiki-data.js +++ b/src/common-util/wiki-data.js @@ -575,7 +575,7 @@ export function* matchMarkdownLinks(markdownSource, {marked}) { // This is just an optimization. Don't let Marked try to process tokens // recursively, i.e. within the text/label of the link. We only care about // the text itself, as a string. - lexer.inlineTokens = x => []; + lexer.inlineTokens = _x => []; // This is cheating, because the lexer's tokenizer is a private property, // but we can apparently access it anyway. |