From Wikipedia, the free encyclopedia
-- CFB schedule table conversion
-- {{subst:#invoke:CFB schedule/convert|table|...}}
local p = {}
function p.table(frame)
local res = mw.ustring.split(frame.args[1] or '', '<t[dh][^<>]*>')
return table.concat(res, '~MARK~')
end
return p