본문으로 이동

모듈:NYC bus link

위키백과, 우리 모두의 백과사전.
Ykhwong (토론 | 기여)님의 2022년 11월 13일 (일) 11:02 판 (phab:T209310에 따른 수정)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

require('strict');
local getArgs = require('Module:Arguments').getArgs
local p = {}

function p.getLink(frame)
	local args = getArgs(frame);
	local result = {};
	local city;
	
	args.city = args.city:lower();
	
	if 'nyc' == args.city then
		city = 'New York City bus';
	elseif 'li' == args.city then
		city = 'Long Island bus';
	elseif 'nj' == args.city then
		city = 'New Jersey bus';
	else
		return table.concat ({'<span style=\"font-size:100%; font-style:normal;\" class=\"error\">unexpected city: ', args.city, '</span>'})
	end
		
	for _, name in ipairs (args) do
		table.insert (result, table.concat ({'[[:en:', name, ' (', city, ')|', name, ']]'}))
	end
	
	if ('yes' == args.prose) or ('y' == args.prose) then
		return mw.text.listToText (result);
	else
		return table.concat (result, ', ');
	end
end

return p;