Модуль:FilePath: различия между версиями

Материал из Space Station 14 Вики
(Модуль для Шаблон:Файл)
 
(made fileLink)
Строка 9: Строка 9:
filePath = filePath:gsub('\\', '/')
filePath = filePath:gsub('\\', '/')
return filePath
return filePath
end
function p.getLink(frame)
local fileLink = getOthersPath(frame.args[1])
fileLink = fileLink:gsub('\n', 'https://github.com/space-syndicate/space-station-14/tree/master/')
return fileLink
end
end
return p
return p

Версия от 18:58, 4 мая 2024

Для документации этого модуля может быть создана страница Модуль:FilePath/doc

local p = {}
function p.getWindowsPath(frame)
	local filePath = frame.args[1]
	filePath = filePath:gsub('/', '\\')
	return filePath
end
function p.getOthersPath(frame)
	local filePath = frame.args[1]
	filePath = filePath:gsub('\\', '/')
	return filePath
end
function p.getLink(frame)
	local fileLink = getOthersPath(frame.args[1])
	fileLink = fileLink:gsub('\n', 'https://github.com/space-syndicate/space-station-14/tree/master/')
	return fileLink
end
return p