Modul:Sports series: Perbedaan antara revisi
Konten dihapus Konten ditambahkan
Membalikkan revisi 26260203 oleh 182.253.116.11 (bicara) Tag: Pembatalan |
transklusi/penyisipan bagian |
||
Baris 1:
-- Modul untuk menampilkan tabel agregat hasil pertandingan olahraga
-- Lihat dokumentasi untuk parameter yang digunakan
local p = {}
Baris 156 ⟶ 159:
function p.main(frame)
local args = require'Modul:Arguments'.getArgs(frame, {trim = true})
-- Check for section transclusion
local tsection = frame:getParent().args['transcludesection'] or frame:getParent().args['section'] or ''
local bsection = args['section'] or ''
if tsection ~= '' and bsection ~= '' then
if tsection ~= bsection then
return '' -- Return an empty string if sections don't match
end
end
local root = mw.html.create()
local matchType = (args.type == 'WNT' or args.type == 'MNT') and 'NT' or (args.type or 'club') -- Set default match type to 'club'
|