From Wikipedia, the free encyclopedia
{{Module rating }}
Usage
{{#invoke:Svara|main}}
Template arguments are passed automatically to the module. Templates that use this module include {{svara}}, {{svaraC}}, and {{svaraH}}.
local mSep = require('Module:Separated entries')
local getArgs = require('Module:Arguments').getArgs
local p = {}
function p.main(frame)
local args = getArgs(frame)
return p._main(args)
end
function p._main(args)
args['separator'] = " "
return mSep.main(args)
end
return p