Module:links: Difference between revisions

ਕੋਈ ਸੋਧ ਸਾਰ ਨਹੀਂ
No edit summary
No edit summary
 
(39 intermediate revisions by 2 users not shown)
Line 5: Line 5:
error("language link data must contain term")
error("language link data must contain term")
end
end
local link = "[[" .. data.term
local link = data.term
local alt = data.alt or data.term
local anchor = data.anchor
local plaenk_alt = mw.loadData("Module:lnk-pro-morph/data").alt
if data.language then
if data.language then
link = link .. "#" .. data.language.code
if data.language.code == "lnk-pro" and plaenk_alt[link] then link = plaenk_alt[link] end
if data.hypo then alt = "**" .. alt end
if data.language.proto then
if not data.nostar and not data.hypo then alt = "*" .. alt end -- * is an asterisk but sometimes the asterisk gets mistaken for wiki formatting
link = "Appendix:" .. data.language.name .. "/" .. data.term
if anchor then link = link .. "#" .. data.language.name .. anchor end
else
local jump = data.language.name
if anchor then jump = data.language.name .. anchor end
link = link .. "#" .. string.gsub(jump, " ", "_")
end
end
local term = mw.ustring.match(mw.ustring.gsub(link, " ", " "),"([^%#]+)")
if term == mw.title.getCurrentTitle().text and not data.nobold then
return "<b>" .. alt .. "</b>"
elseif mw.ustring.match(term, "^[%?%-–—]+$") or mw.ustring.match(term, ":[%?%-–—]+$") or data.nolink then
return alt
else
return "[[" .. link .. "|" .. alt .. "]]"
end
end
return link .. "|" .. data.alt or data.term .. "]]"
end
end


Line 17: Line 45:
if data.gloss then table.insert(out, '“' .. data.gloss .. '”') end
if data.gloss then table.insert(out, '“' .. data.gloss .. '”') end
if data.pos then table.insert(out, data.pos) end
if data.pos then table.insert(out, data.pos) end
return table.concat(out)
return table.concat(out, ", ")
end
end


function export.full_link(data, face)
function export.full_link(data, face)
local link = export.language_link(data)
local link = export.language_link(data)
if face and face ~= "" then
link = require("Module:formatting").wrap_face(link, data.language, face or "nil")
link = require("Module:formatting").wrap_face(link, data.language, face)
end
local extras = export.link_extras(data)
local extras = export.link_extras(data)
if extras then
if extras then
Line 31: Line 57:
local prefix
local prefix
if data.language and data.showlanguage then
if data.language and data.showlanguage then
prefix = "[[" .. language.link .. "|" .. language.name .. "]] "
prefix = "[[" .. data.language.link .. "|" .. data.language.name .. "]] "
end
end
return (prefix or "") .. link .. (extras or "")
return (prefix or "") .. link .. (extras or "")