Documentation for this module may be created at Module:FreeBSD/doc
local p = {}
-- Gets a formatted FreeBSD port link
function p.GetsPortLink(frame)
if (frame.args.url == nil or frame.args.url == '') then
link = "https://www.freshports.org/" .. frame.args.port
else
link = frame.args.url
end
return '[' .. link .. ' ' .. frame.args.port .. ']'
end
return p