Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Micro Pedia
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Module:Unicode data/documentation functions
Module
Discussion
English
Read
Edit
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
View history
General
What links here
Related changes
Special pages
Page information
Get shortened URL
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
The edit appears to have already been undone.
Anti-spam check. Do
not
fill this in!
local p = {} local output_mt = {} function output_mt:insert(str) self.n = self.n + 1 self[self.n] = str end function output_mt:insert_format(...) self:insert(string.format(...)) end output_mt.join = table.concat output_mt.__index = output_mt local function Output() return setmetatable({ n = 0 }, output_mt) end function p.show_modules() local output = Output() output:insert [[ {| class="wikitable" style="text-align: center;"' |+ Character name data modules,<br>organized by first three digits of codepoint in hexadecimal base]] for i = -1, 0xF do if i >= 0 then output:insert_format('\n! %X', i) else output:insert '\n!' end end output:insert '\n|-' local prev = -1 local row local found_module = false for i = 0, 0x10F do local first_two_digits = math.floor(i / 0x10) if first_two_digits ~= prev then if found_module then output:insert(row:join()) end found_module = false row = Output{} row:insert_format("\n|-\n! %02Xx", first_two_digits) prev = first_two_digits end row:insert '\n| ' local name_module = ('Module:Unicode data/names/%03X'):format(i) if mw.title.new(name_module).exists then local first_cp = i * 0x1000 row:insert_format("[[%s|U+%04X–<br>U+%04X]]", name_module, first_cp, first_cp + 0xFFF) found_module = true end end output:insert "\n|}" return output:join() end return p
Summary:
Please note that all contributions to Micro Pedia may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Micro Pedia:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Module:Unicode data/documentation functions/doc
(
edit
)