Module:Sandbox/Kephir
Appearance
-- [[User:Kephir]]'s Scribunto sandbox
-- do not expect anything to stay here in place
return {
do_it = function (frame)
local output = {}
for link in mw.text.unstrip(frame:preprocess("{{Special:PrefixIndex/User:Mr. Stradivarius}}")):gmatch([[<a href="/wiki/(.-)"]]) do
table.insert(output, "* [[" .. mw.uri.decode(link, "WIKI") .. "]]")
end
return #output .. " pages.\n" .. table.concat(output, "\n")
end
}