Jump to content

Module:Listeria

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Magnus Manske (talk | contribs) at 12:50, 14 June 2019. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local p = {}

p.show_tabbed_data = function (frame)
	mArguments = require('Module:Arguments')
	args = mArguments.getArgs(frame)
	return p._show_tabbed_data(args)
end


p._show_tabbed_data = function (args)
	checkType('_show_tabbed_data', 1, args, 'table', true)
	args = args or {}
	local ret = "Using: '" .. args.page .. "'"
	return ret
end

return p