Jump to content

Module:Remsense/Unicode chart

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Remsense (talk | contribs) at 00:27, 20 September 2024. The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
require('strict')
local p = {}

p.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
-- mw.logObject(p.uData.get_block_info("CJK Radicals Supplement"))
return p