Last active
August 19, 2023 14:00
-
-
Save danieltomasz/bde887dcc775bd47acc0ddf993e3ec2b to your computer and use it in GitHub Desktop.
Lua filter for removing wikilinks brackets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Str(str) | |
return (str.text | |
:gsub('%[%[', '') | |
:gsub('%]%]', '')) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment