Content deleted Content added
Paisley Park (talk | contribs) No edit summary |
No edit summary |
||
Line 20:
-- Helper function to determine the style based on the type argument
local function switchType(type, hover, hovertext)
if type == "J" then
if hover and hover ~= '' and hovertext ~= '' then▼
return string.format('span class="popup nihongo-japanese" lang="ja" style="font-family:Meiryo;" data-content="%s"', escapeQuotes(hovertext))▼
else▼
▲ return 'lang="ja" style="font-family:Meiryo; display:inline;" class="nihongo-japanese"'
▲ end
elseif type == "R" then
else
end
▲
return string .. '"'
end
|