Jump to content

Module:Sandbox/Erutuon

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Erutuon (talk | contribs) at 23:11, 3 December 2018 (translating Template:Graph:Chart to Lua). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}

function p.show(frame)
	return frame:extensionTag("templatestyles", nil, { src = "Graph:Chart/styles.css" })
		.. frame:extensionTag (
			"graph",
			require("Module:Graph").chart { args = { width = '100', height = '100', x = '1', y = '1' } }
		)
end

function p.parse_IETF()
	return ''
end

return p