মডিউল:জন্য

উইকিপিডিয়া, মুক্ত বিশ্বকোষ থেকে

Implements {{জন্য}}।

local mArguments --initialize lazily
local yesno = require('মডিউল:Yesno')
local mHatlist = require('মডিউল:হাটনোট তালিকা')
local mHatnote = require('মডিউল:Hatnote')
local p = {}

--Implements {{For}} from the frame
--uses capitalized "For" to avoid collision with Lua reserved word "for"
function p.For (frame)
	mArguments = require('মডিউল:Arguments')
	return p._For(mArguments.getArgs(frame))
end

--Implements {{For}} but takes a manual arguments table
function p._For (args)
	local use = args[1]
	local category = ''
	if (not use or use == 'other uses') and
		(not args.category or yesno(args.category)) then
			category = '[[বিষয়শ্রেণী:হাটনোট টেমপ্লেট অস্বাভাবিক প্যারামিটার ব্যবহার করছে]]'
	end
	local pages = {}
	function two (a, b) return a, b, 1 end --lets us run ipairs from 2
	for k, v in two(ipairs(args)) do table.insert(pages, v) end
	return mHatnote._hatnote(
		mHatlist.forSeeTableToString({{use = use, pages = pages}}),
		{selfref = args.selfref}
	) .. category
end

return p