DigimonWiki
(Created page with "local p = {} local Parsers = mw.loadData( 'Module:C/data' ) function p.C( frame ) local Key = frame.args[1] return Parsers[string.lower(Key)] or Key end return p --...")
Tag: sourceedit
 
(Undo revision 456180 by Lanate (talk))
 
(One intermediate revision by the same user not shown)
(No difference)

Latest revision as of 19:01, 1 January 2018

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

local p = {}
 
local Parsers = mw.loadData( 'Module:C/data' )
 
function p.C( frame )
	local Key = frame.args[1]
 
	return Parsers[string.lower(Key)] or Key
end
 
return p

--[[Category:Lua modules]]