Jump to content

Module:Sandbox/Kephir

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Kephir (talk | contribs) at 08:13, 2 January 2014 (2421). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
-- [[User:Kephir]]'s Scribunto sandbox
-- do not expect anything to stay here in place

return {
	do_it = function (frame)
		local output = {}
		local strip_marker = frame:preprocess("{{Special:PrefixIndex/User:Mr. Stradivarius}}")
		for link in mw.text.unstrip(strip_marker):gmatch([[<a href="/wiki/(.-)"]]) do
			table.insert(output, "* [[" .. mw.uri.decode(link, "WIKI") .. "]]")
		end
		return #output .. " pages.\n" .. table.concat(output, "\n") ..
			"\nstrip marker:<pre>" .. strip_marker:gsub("\127", "&#x2421;") .. "</pre>" ..
			"strip marker contents:<pre>" .. mw.text.unstrip(strip_marker) .. "</pre>"
	end,
}