Module:User:Catonif/surf

Hello, you have come here looking for the meaning of the word Module:User:Catonif/surf. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:User:Catonif/surf, but we will also tell you about its etymology, its characteristics and you will know how to say Module:User:Catonif/surf in singular and plural. Everything you need to know about the word Module:User:Catonif/surf you have here. The definition of the word Module:User:Catonif/surf will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:User:Catonif/surf, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.


local export = {};

function export.main(frame)
	local args = frame:getParent().args;
	local template_name = args;
	local new_args = {};
	for i, v in pairs(args) do
		local num = tonumber(i);
		if (num) then
			if (num ~= 1) then
				new_args = v;
			end
		else
			new_args = v;
		end
	end
	new_args.nocap = true;
	return (args.nocap and 'b' or 'B')
		.. 'y ], '
		.. frame:expandTemplate { title = template_name, args = new_args };
end

return export;