View source for Module:Infobox road/abbrev/defs
MyWikiBiz, Author Your Legacy — Saturday June 21, 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.
local p = {}
local format = string.format
Abbr = {formatArgs = {"route"}}
function Abbr:new(obj)
obj = obj or {}
setmetatable(obj, self)
self.__index = self
return obj
end
function Abbr:abbr(args)
self:preprocess(args)
return self:exception(args) or self:default(args)
end
function Abbr:preprocess(args)
local preprocessors = self.preprocessors or {}
for i,preprocessor in ipairs(preprocessors) do
000
1:0
Template used on this page:
Return to Module:Infobox road/abbrev/defs.