모듈:NYC bus link
보이기
이 모듈의 자세한 설명은 en:Module:NYC_bus_link/doc 항목을 참고하십시오.
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;