Module:Weblink

De Lagny-sur-Marne Wiki
Révision datée du 19 octobre 2014 à 14:42 par Zolo (discussion) (ce)
Aller à : navigation, rechercher

La documentation pour ce module peut être créée à Module:Weblink/doc

local p = {}

function p.makelink(url, showntext)
	if not url then 
		return nil
	end
	if not showntext then
		showntext = string.gsub( url, 'https?://', '')
	end
	return '[' .. url ..  ' ' ..  showntext .. ']'
end

function p.makelinks(stringlist, separator)
	if not type(stringlist) == table then
		return error('stringlist should be table')
	end
	if not separator then
		separator = '<br />'
	end
	for i, j in pairs(stringlist) do
		stringlist[i] = p.makelink(k)
	return table.concat(stringlist, separator )
	end
end

return p