View source for Module:Singles
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
-- Ripped from Module:Infobox. TODO: Make a utility module that can do this kind of thing
local function getArgNums(args, prefix)
-- Returns a table containing the numbers of the arguments that exist
-- for the specified prefix. For example, if the prefix were to be 'data', and
-- 'data1', 'data2', and 'data5' were to exist, it would return {1, 2, 5}.
local nums = {}
for k, v in pairs(args) do
local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$')
if num then table.insert(nums, tonumber(num)) end
end
table.sort(nums)
return nums
end
-- Forked from Module:Unsubst-infobox
local specialParams = {
['$B'] = 'template content'
000
1:0
Template used on this page:
Return to Module:Singles.