Модуль:FilePath

Материал из Space Station 14 Вики

Для документации этого модуля может быть создана страница Модуль: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