Content deleted Content added
m slightly more accurate |
Hope you don't mind me editing your userspace, but Module:Table has been merged |
||
(One intermediate revision by one other user not shown) | |||
Line 6:
codepoint_set[codepoint] = true
end
return require "Module:
end
Line 57:
}
end
end
-- Usage:
-- {{#invoke:Sandbox/Erutuon/charinsert_names|highlighted_character_names|abc}}
-- ↓
-- {"97":"LATIN SMALL LETTER A","98":"LATIN SMALL LETTER B",
-- "99":"LATIN SMALL LETTER C"}
function p.highlighted_character_names(frame)
local chars = frame.args[1]
if not chars or chars == "" then
error("Supply characters in parameter 1")
end
return p.highlight(p.JSON_character_names(chars))
end
|