Module:template demo

Hello, you have come here looking for the meaning of the word Module:template demo. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:template demo, but we will also tell you about its etymology, its characteristics and you will know how to say Module:template demo in singular and plural. Everything you need to know about the word Module:template demo you have here. The definition of the word Module:template demo will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:template demo, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

This module needs documentation.
Please document this module by describing its purpose and usage on the documentation page.

local export = {}

local template_link = require("Module:template parser").templateLink
local pairs = pairs
local remove = table.remove
local shallowcopy = require("Module:table").shallowcopy

function export.show(frame)
	local args = shallowcopy(pairs(frame.args)() and frame.args or frame:getParent().args)
	local template_name = remove(args, 1)
	return template_link(template_name, args) .. " ⇒<br style=\"line-height: 200%;\" />"
		.. frame:expandTemplate {title = template_name, args = args}
end

return export