Module:Common

From DataTrek
Revision as of 00:08, 10 June 2020 by Lucamauri (talk | contribs)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Common/doc

-- Keyword: wikitrek
local p = {}
function p.SiteAllP()
	local MaxP = 20
	local AllP = {}
	
	for PNumber = 1, MaxP, 1 do
      if mw.wikibase.entityExists('P' .. PNumber) then
      	AllP[#AllP + 1] = 'P' .. PNumber
      end
    end
	
	return table.concat(AllP, "<br />" .. string.char(10))
end
return p