-- CFB schedule table conversion
-- {{subst:#invoke:CFB schedule/convert|table|...}}
local p = {}
function p.table(frame)
local res = mw.text.split(frame.args[1] or '', '{{[_%s]*CFB[_%s]*Schedule[_%s]*')
return table.concat(res, '~MARK~')
end
return p