View source for Module:links
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local export = {}
function export.language_link(data)
if not data.term then
error("language link data must contain term")
end
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.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
000
1:0
Template used on this page:
Return to Module:links.