Content deleted Content added
added function to get a (wikitable-ified) list of all the book name aliases for use in template documentation |
m added forgotten helper function |
||
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
|