Module:LDSverse: Difference between revisions

Content deleted Content added
added function to get a (wikitable-ified) list of all the book name aliases for use in template documentation
m Protected "Module:LDSverse": request at RfPP ([Edit=Require autoconfirmed or confirmed access] (indefinite) [Move=Require autoconfirmed or confirmed access] (indefinite))
 
(One intermediate revision by one other user not shown)
Line 432:
wikiText = wikiText .. "]]" -- DON'T FORGET!!!
return wikiText
end
 
-- like the name says, this just counts the number of keys (aka indexes) in a table
local function countKeys(t)
local i = 0
for k,v in pairs(t) do i = i+1 end
return i
end