Jump to content

Module:Sandbox/Frietjes

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Frietjes (talk | contribs) at 15:54, 31 January 2018 (testing). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
-- 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