Module:links/templates: Difference between revisions

From Laenkea
Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 14: Line 14:
["t"] = {alias_of = "text"},
["t"] = {alias_of = "text"},
["a"] = {alias_of = "anchor"},
["a"] = {alias_of = "anchor"},
["nolink"] = {type = "boolean"},
["hypo"] = {type = "boolean"},
["hypothetical"] = {alias_of = "hypo"},
["text"] = {},
["text"] = {},
["pos"] = {},
["pos"] = {},
["nobold"] = {},
["nobold"] = {type = "boolean"},
["nostar"] = {type = "boolean"},
}
}


Line 25: Line 29:
term = args[2],
term = args[2],
alt = args["alt"],
alt = args["alt"],
anchor = args["anchor"],
gloss = args["text"],
gloss = args["text"],
pos = args["pos"],
pos = args["pos"],
nobold = args["nobold"],
nobold = args["nobold"],
nostar = args["nostar"],
nolink = args["nolink"],
hypo = args["hypo"],
}
}
end
end

Latest revision as of 15:59, 31 May 2024

Documentation for this module may be created at Module:links/templates/documentation

local export = {}

local m_links = require("Module:links")
local m_languages = require("Module:languages")
local m_parameters = require("Module:parameters")

local params = {
	[1] = {required = true},
	[2] = {required = true},
	[3] = {alias_of = "alt"},
	["alt"] = {},
	["anchor"] = {},
	[4] = {alias_of = "text"},
	["t"] = {alias_of = "text"},
	["a"] = {alias_of = "anchor"},
	["nolink"] = {type = "boolean"},
	["hypo"] = {type = "boolean"},
	["hypothetical"] = {alias_of = "hypo"},
	["text"] = {},
	["pos"] = {},
	["nobold"] = {type = "boolean"},
	["nostar"] = {type = "boolean"},
}

local function get_data(args)
	local args = m_parameters.process(args, params)
	return {
		language = m_languages.get_by_code(args[1]),
		term = args[2],
		alt = args["alt"],
		anchor = args["anchor"],
		gloss = args["text"],
		pos = args["pos"],
		nobold = args["nobold"],
		nostar = args["nostar"],
		nolink = args["nolink"],
		hypo = args["hypo"],
	}
end

function export.link(frame)
	return m_links.full_link(get_data(frame:getParent().args))
end

function export.mention(frame)
	return m_links.full_link(get_data(frame:getParent().args), "term")
end

function export.mention_with_language_name(frame)
	local data = get_data(frame:getParent().args)
	data["showlanguage"] = true
	return m_links.full_link(data, "term")
end

return export