View source for Module:NYC bus link
MyWikiBiz, Author Your Legacy — Tuesday July 08, 2025
Jump to navigationJump to searchYou do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
require('Module:No globals');
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';
elseif 'columbia' == args.city then
city = 'Columbia Transportation'
elseif 'princeton' == args.city then
city = 'Tiger Transit'
000
1:0
Templates used on this page:
Return to Module:NYC bus link.