Module:Sandbox/Alexiscoutinho

This is an old revision of this page, as edited by Alexiscoutinho (talk | contribs) at 22:41, 24 March 2020. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

function p.buildRows( frame )
	local barwidth = frame.args.barwidth
	local data = frame.args.data
	local divisor = frame.args.divisor
	local numwidth = frame.args.numwidth
	local collapsible = frame.args.collapsible

	local lines = mw.text.split( data, '\n' )
	return lines[1], lines[2], lines[3]
end
return p