Difference between revisions of "Module:Bundles"
Jump to navigation
Jump to search
(Created page with "local p = {} local com = require( "Module:Common" ) function bundleRow() end function bundleGroup(bundle) bundleRows = mw.text.split(bundle, '\n') for k, v in ipairs(bu...") |
(No difference)
|
Revision as of 00:14, 24 October 2021
Documentation for this module may be created at Module:Bundles/doc
local p = {}
local com = require( "Module:Common" )
function bundleRow()
end
function bundleGroup(bundle)
bundleRows = mw.text.split(bundle, '\n')
for k, v in ipairs(bundleRows) do
end
end
function p.bundles(frame)
return bundleGroup(frame.args[1])
end
return p