Модуль:ChatCommandslist
Материал из Eco - Русская Wiki
Для документации этого модуля может быть создана страница Модуль:ChatCommandslist/doc
local p = {}
function p.main()
local wiki = ''
-- import the required modules
local commandsData = require( "Module:CommandData" )
-- create the header of the table
local header = "<table class=\"wikitable sortable\"> \n "
header = header .. "<tr> \n "
header = header .. "<th>Категория</th> \n "
header = header .. "<th>Команда</th> \n "
header = header .. "<th>Быстрый вызов</th> \n "
header = header .. "<th>Описание</th> \n "
header = header .. "<th>Аргументы</th> \n "
header = header .. "</tr> \n "
wiki = header
wiki = wiki .. " </table>"
return wiki
end
return p