Module:Twemoji: Difference between revisions
Jump to navigation
Jump to search
fuuuuuuuuuu |
No edit summary |
||
Line 4: | Line 4: | ||
function p.main(frame) | function p.main(frame) | ||
local | local inp = frame.args[1] | ||
local | local beginspan = "<span class='nowrap'>" | ||
local | local size = "20px" | ||
if (frame.args[2]) | if (frame.args[2]) | ||
then | then | ||
beginspan = "<span class='nowrap' title='" .. frame.args[2] .. "'>" | |||
end | end | ||
if (frame.args[3]) | if (frame.args[3]) | ||
then | then | ||
size = frame.args[3] | |||
end | end | ||
if (mw.ustring.match( | if (mw.ustring.match(inp, "[A-z0-9-]")) | ||
then | then | ||
return beginspan .. "[[File:Twemoji12 " .. inp .. ".svg|".. size .."|link=|alt=]]</span>" | |||
else | else | ||
local cps = {} | local cps = {} | ||
local i = 1 | local i = 1 | ||
for codepoint in mw.ustring.gcodepoint( | for codepoint in mw.ustring.gcodepoint(inp) do | ||
cps[i] = string.format("%x", codepoint) | cps[i] = string.format("%x", codepoint) | ||
i = i + 1 | i = i + 1 | ||
Line 33: | Line 32: | ||
local output = table.concat(cps, "-") | local output = table.concat(cps, "-") | ||
return beginspan .. "[[File:Twemoji12 " .. output .. ".svg|".. size .."|link=|alt=]]</span>" | |||
end | end | ||
end | end | ||
return p | return p |
Revision as of 06:50, 8 February 2021
Documentation for this module may be created at Module:Twemoji/doc
-- Implements Template:Twemoji
local p = {}
function p.main(frame)
local inp = frame.args[1]
local beginspan = "<span class='nowrap'>"
local size = "20px"
if (frame.args[2])
then
beginspan = "<span class='nowrap' title='" .. frame.args[2] .. "'>"
end
if (frame.args[3])
then
size = frame.args[3]
end
if (mw.ustring.match(inp, "[A-z0-9-]"))
then
return beginspan .. "[[File:Twemoji12 " .. inp .. ".svg|".. size .."|link=|alt=]]</span>"
else
local cps = {}
local i = 1
for codepoint in mw.ustring.gcodepoint(inp) do
cps[i] = string.format("%x", codepoint)
i = i + 1
end
local output = table.concat(cps, "-")
return beginspan .. "[[File:Twemoji12 " .. output .. ".svg|".. size .."|link=|alt=]]</span>"
end
end
return p