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 then
link = "http://www.freshports.org/" .. frame.args.port
elseif frame.args.url == '' then
link = frame.args.url
end
return '[' .. link .. ' ' .. frame.args.port .. ']'
end
return p