Module:Nihongo: Difference between revisions

Content deleted Content added
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)
local string = end""
if type == "J" then
string return= 'lang="ja" style="font-family:Meiryo; display:inline;" class="nihongo-japanese"'
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
return string = 'style="font-style:italic; font-weight:normal;" class="nihongo-romaji"'
else
return string = 'class="nihongo-english"'
end
if hover and hover ~= '' and hovertext ~= '' then
return string.format(string .. 'span class="popup nihongo-japanese" lang="ja" style="font-family:Meiryo;" data-content="%s"', escapeQuotes(hovertext))
elseend
return string .. '"'
end