Module:Template:also
local export = {}
local yesno = require('Module:yesno')
-- Join with serial "and" and serial comma
local function serial_comma_join(seq)
if #seq == 0 then
return ""
elseif #seq == 1 then
return seq[1] -- nothing to join
elseif #seq == 2 then
return seq[1] .. " ''and'' " .. seq[2]
else
return table.concat(seq, ", ", 1, #seq - 1) .. "<span class='serial-comma'>,</span>" ..
"''<span class='serial-and'> and</span>'' " ..
seq[#seq]
end
end
function export.main(frame)
local args = frame:getParent().args
local sc_default = args["sc"]
local uni_default = yesno((args["uni"] == "auto") or args["uni"]) and "auto" or nil
local items = {}
for i, arg in ipairs(args) do
local uni = args["uni" .. i] or uni_default
local sc = args["sc" .. i] or sc_default
if not yesno(uni, uni) then
uni = nil
end
local s = ""
local has_piped_link, _, link_text = arg:find("%[%[[^%[%]|]+|(.+)]]")
if has_piped_link then
s = ("'''%s'''"):format(arg)
arg = mw.text.decode(link_text)
else
local has_link, _, link_text = arg:find("%[%[([^%[%]|]+)]]")
if has_link then
s = ("'''%s'''"):format(arg)
arg = mw.text.decode(link_text)
else
s = ("'''[[%s]]'''"):format(arg)
end
end
local codepoint = nil
if uni then
require("Module:debug").track("also/uni")
if uni == 'auto' then
codepoint = (mw.ustring.len(arg) == 1) and mw.ustring.codepoint(arg, 1, 1)
else
codepoint = tonumber(uni)
if mw.ustring.len(arg) ~= 1 or codepoint ~= mw.ustring.codepoint(arg, 1, 1) then
require("Module:debug").track("also/uni/noauto")
else
require("Module:debug").track("also/uni/auto")
end
end
end
if codepoint then
local m_unidata = require('Module:Unicode data')
s = s .. (" <small>[U+%04X %s]</small>"):format(
codepoint,
m_unidata.lookup_name(codepoint):gsub("<", "<")
)
end
if arg ~= mw.title.getCurrentTitle().fullText then
table.insert(items, s)
else
require("Module:debug").track("also/pagename")
end
end
if #items == 0 then
table.insert(items, "{{{1}}}")
end
return ("<div class=\"disambig-see-also%s\">''Relatit:'' %s</div>"):format(
(#items == 2) and "-2" or "",
serial_comma_join(items)
)
end
return export
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.