Jump to content

Module:Remsense/Unicode chart

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Remsense (talk | contribs) at 00:20, 20 September 2024 (Created page with 'require('strict') local p = {} local uData = require('Module:Unicode_data') function p.uChart(frame) -- load arguments module to simplify handling of args local getArgs = require('Module:Arguments').getArgs local args = getArgs(frame) return p._uChart(args) end function p.uChart(args) end'). 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)
require('strict')
local p = {}

local uData = require('Module:Unicode_data')

function p.uChart(frame)
	-- load arguments module to simplify handling of args
	local getArgs = require('Module:Arguments').getArgs
	
	local args = getArgs(frame)
	return p._uChart(args)
end

function p.uChart(args)
end