Module:qualifier: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 11: | Line 11: | ||
return '<span style="font-style: italic; display: none;">(</span>' .. | return '<span style="font-style: italic; display: none;">(</span>' .. | ||
'<span | '<span style="font-style: normal;">' .. | ||
table.concat(list, '<span | table.concat(list, '<span style="font-style: normal">,</span> ') .. | ||
'</span><span | '</span><span style="font-style: italic; display: none;">)</span>' | ||
end | end | ||
Revision as of 22:38, 4 December 2020
- The following documentation is located at Module:qualifier/doc.[edit]
- Useful links: subpage list • links • transclusions • testcases • sandbox
local export = {}
function export.format_qualifier(list)
if type(list) ~= "table" then
list = { list }
end
if #list == 0 then
return ''
end
return '<span style="font-style: italic; display: none;">(</span>' ..
'<span style="font-style: normal;">' ..
table.concat(list, '<span style="font-style: normal">,</span> ') ..
'</span><span style="font-style: italic; display: none;">)</span>'
end
function export.qualifier_t(frame)
local params = {
[1] = {list = true, required = true},
}
local args = require("Module:parameters").process(frame:getParent().args, params)
local subvarieties = mw.loadData("Module:qualifier/subvarieties")
for i, label in ipairs(args[1]) do
if subvarieties[label] then
require("Module:debug").track("qualifier/subvarieties")
--[[
currently not working:
local lang = subvarieties[label].languages[1]
require("Module:debug").track("qualifier/subvarieties/" .. lang)
]]
end
end
return export.format_qualifier(args[1])
end
function export.sense(list)
return export.format_qualifier(list)
.. '<span class="ib-colon sense-qualifier-colon">:</span>'
end
function export.sense_t(frame)
local params = {
[1] = {list = true, required = true},
}
local args = require("Module:parameters").process(frame:getParent().args, params)
return export.sense(args[1])
end
function export.gloss_t(frame)
local params = {
[1] = {required = true},
}
local args = require("Module:parameters").process(frame:getParent().args, params)
return '<span class="gloss-brac">(</span><span class="gloss-content">' ..
args[1] .. '</span><span class="gloss-brac">)</span>'
end
function export.non_gloss_definition_t(frame)
local params = {
[1] = {required = true},
}
local args = require("Module:parameters").process(frame:getParent().args, params)
return '<span class="use-with-mention">' .. require("Module:links").english_links(args[1]) .. '</span>'
end
return export