Module:nn-inf
Jump to navigation
Jump to search
- The following documentation is located at Module:nn-inf/documentation. [edit]
- Useful links: subpage list • links • transclusions • testcases • sandbox
local lang = require("Module:languages").getByCode("nn")
local links = require("Module:links")
local export = {}
function export.main(frame)
local PAGENAME = mw.title.getCurrentTitle().text
local args = frame:getParent().args
local root = ''
local separator = ''
if args[1] and args[1] ~= '' then
root = args[1]
else
root = PAGENAME:gsub('[ae]$', '')
end
if args[2] and args[2] ~= '' then
separator = args[2]
else
separator = ','
end
if separator == ',' then
separator = ', '
end
local linkA = links.full_link{term = root .. 'a', lang = lang}
local linkE = links.full_link{term = root .. 'e', lang = lang}
return linkA .. separator .. linkE
end
return export