Module:Pipe escape

MyWikiBiz, Author Your Legacy — Tuesday June 04, 2024
Jump to navigationJump to search

Implements {{pipe escape}}


local p = {}
function p.pipe( f )
	local out = {}
	for _, arg in ipairs( f:getParent().args ) do
		table.insert( out, arg )
	end

	return  mw.text.trim( table.concat( out, '|' ) )
end

return p