Module:Sandbox/Frietjes

This is an old revision of this page, as edited by Frietjes (talk | contribs) at 15:56, 31 January 2018. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
-- 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 '', '<t[dh][^<>]*>')
	return table.concat(res, '~MARK~')
end
return p