Adam
Новая страница: « ---- Этот модуль формирует таблицу по списку local p = {} local function buildTable(head, rows) local tabl = mw.html.create( 'table' ) :addClass('standard'); tabl:tag('tr') :tag('th'):wikitext(head[1]):done() :tag('th'):wikitext(head[2]); for i, r in ipairs(rows) do if r[2] == nil then tabl:tag('tr') :tag('td') :attr('colspan', '2') :css('text-align', 'center') :css('color', 'white') :...»