Module:Sandbox/Gnosygnu
Appearance
--This Module is for Lua experimentation. No other pages refer to it.
local p = {}
function p.link(frame)
local word = false;
if not mw.ustring.match(word, "[%[%]]") then
if mw.ustring.match(word, "^—.+—$") then
word = mw.ustring.gsub(word, "—(.+)—", "—[[%1]]—")
else
word = "[[" .. word .. "]]"
end
end
return word;
end
return p