Module:Bongolium500/learning: Difference between revisions

From Tardis Wiki, the free Doctor Who reference
No edit summary
No edit summary
Line 2: Line 2:


function p.pipeTest( frame )
function p.pipeTest( frame )
arg = frame.args[1]
return frame:preprocess("<pre>"..frame.args[1].."</pre>")
if arg == "Text|Text" then
local text = "Pipe"
elseif arg == "Text{{!}}Text" then
local text = "Fake Pipe"
end
return text
end
end


return p
return p

Revision as of 11:17, 28 December 2021

Script error: The function "error" does not exist.


local p = {}

function p.pipeTest( frame )
	return frame:preprocess("<pre>"..frame.args[1].."</pre>")
end

return p