Difference between revisions of "Module:For nowiki/sandbox"

From blackwiki
Jump to navigation Jump to search
blackwiki>Pppery
m (36 revisions imported)
 
(13 intermediate revisions by 2 users not shown)
Line 4: Line 4:
 
local result = {}
 
local result = {}
 
code = mw.text.unstripNoWiki(code)
 
code = mw.text.unstripNoWiki(code)
if code ~= mw.text.killMarkers(code) then
 
--[[
 
This module is being called through some kind of ExpandTemplates API, which isn't processing the nowiki tags (phab:T199852)
 
Therefore, whatever the user passed as code is not accessible to this module and continuing wil result in <nowiki> tags
 
showing everywhere. Return nothing in that case
 
--]]
 
return;
 
end
 
 
for i, value in ipairs(args) do
 
for i, value in ipairs(args) do
 
if i > offset then
 
if i > offset then
Line 47: Line 39:
 
local sep = frame.args[1]
 
local sep = frame.args[1]
 
local code = frame.args[2] or frame.args.code
 
local code = frame.args[2] or frame.args.code
 +
local forceone = frame.args[3]
 
local offset = tonumber(frame.args.offset) or 0
 
local offset = tonumber(frame.args.offset) or 0
return doLoop(frame:getParent(), frame:getParent().args, code, sep, offset, {})
+
local pargs = frame:getParent().args
 +
if forceone and not pargs[1] then
 +
pargs[1] = 'test'
 +
end
 +
return doLoop(frame:getParent(), pargs, code, sep, offset, {})
 
end
 
end
 
return p
 
return p

Latest revision as of 16:40, 26 September 2020

Documentation for this module may be created at Module:For nowiki/sandbox/doc

local p = {}

local function doLoop(frame, args, code, sep, offset, argstosub)
	local result = {}
	code = mw.text.unstripNoWiki(code)
	for i, value in ipairs(args) do
		if i > offset then
			argstosub["i"] = i - offset
			argstosub["1"] = value
			local actualCode = code:gsub("{{{([^{}|]*)|?[^{}]*}}}", argstosub)
			table.insert(result, frame:preprocess(actualCode))
		end
	end
	return table.concat(result, sep)
end

function p.main(frame)
	local args = frame:getParent().args
	local sep = args[1]
	local code = args.code or args[2]
	local offset = args.code and 1 or 2
	local argstosub = {}
	for key, value in pairs(args) do
		if not tonumber(key) and key ~= "i" and key ~= "count" then
			argstosub[key] = value
		end
	end
	local countArg = args.count and tonumber(args.count);
	if countArg then
		offset = 0
		args = {}
		for i = 1, countArg do
		   args[i] = i
		end
	end
	return doLoop(frame, args, code, sep, offset, argstosub)
end
function p.template(frame) 
	local sep = frame.args[1]
	local code = frame.args[2] or frame.args.code
	local forceone = frame.args[3]
	local offset = tonumber(frame.args.offset) or 0
	local pargs = frame:getParent().args
	if forceone and not pargs[1] then
		pargs[1] = 'test'
	end
	return doLoop(frame:getParent(), pargs, code, sep, offset, {})
end
return p