mNo edit summary |
mNo edit summary |
||
Line 5: | Line 5: | ||
end | end | ||
end | end | ||
return lines | |||
end | end | ||
Revision as of 16:54, 8 April 2024
local function lines_aux(lines)
for k, def in pairs(lines) do
if not def.title then
def.title = ("[[Nordstetten LRT Line %s|Line %s]]"):format(k, k)
end
end
return lines
end
local p = {
["system title"] = "[[Nordstetten Light Rail]]",
["system icon"] = "",
["station format"] = {
"[[%1 LRT Station|%1]]",
},
["lines"] = lines_aux {
["1"] = {
["color"] = "0000FF",
["left terminus"] = "Wörther Straße",
["right terminus"] = "Eulerstraße",
}
},
}
return p