Module:Nihongo: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
 
(15 intermediate revisions by one other user not shown)
Line 20:
-- Helper function to determine the style based on the type argument
local function switchType(type, hover, hovertext)
local baseString = ""
local dataContentType = ""
if type == "J" then
baseString 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 baseString = 'style="font-style:italic; font-weight:normal;" class="nihongo-romaji"'
else
return baseString = 'class="nihongo-english"'
-- Determine `data-content-type` based on conditions
if type ~= "J" and type ~= "R" then
if args[3] and args[3] ~= "" then
dataContentType = ' data-content-type="nihongo-romaji"'
elseif args[2] and args[2] ~= "" then
dataContentType = ' data-content-type="nihongo-japanese"'
end
elseif type == "J" and args[2] and args[2] ~= "" then
dataContentType = ' data-content-type="nihongo-romaji"'
end
end
if hover and hover ~= '' and hovertext ~= '' then
return string.format('span%s class="popup nihongo-japanese" lang="ja" style="font-family:Meiryo;" data-content="%s"%s', baseString, escapeQuotes(hovertext), dataContentType)
end
return baseString .. '"' .. dataContentType
end
 
-- Determine the styles for each type
local type1Style = switchType(args.type1 or 'E', args.hover and not (args[3] and args[3] ~= ''), args[2] or '')
local type2Style = switchType(args.type2 or 'J', args.hover and args[3], args[3] or '')
local type3Style = switchType(args.type3 or 'R', args.hover, args[4] or '')
 
Line 63 ⟶ 75:
end
 
if args[2] and args[2] ~= '' and not (args.hover and not (args[3] and args[3] ~= '')) then
-- Add line break if requested
if args.lineBreak and args.lineBreak ~= '' then
Line 78 ⟶ 90:
end
else
resultif =args[1] resultand ..args[1] '~= '' then
result = result .. ' '
elseend
end