Module:qualifier/templates

Hello, you have come here looking for the meaning of the word Module:qualifier/templates. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:qualifier/templates, but we will also tell you about its etymology, its characteristics and you will know how to say Module:qualifier/templates in singular and plural. Everything you need to know about the word Module:qualifier/templates you have here. The definition of the word Module:qualifier/templates will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:qualifier/templates, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.


local m_qualifier = require("Module:qualifier")

local antsense = m_qualifier.antsense
local format_qualifier = m_qualifier.format_qualifier
local process_params = require("Module:parameters").process
local sense = m_qualifier.sense

local export = {}

function export.qualifier_t(frame)
	return format_qualifier(
		process_params(frame:getParent().args, {
			 = {required = true, list = true},
		})
	)
end

function export.sense_t(frame)
	return sense(
		process_params(frame:getParent().args, {
			 = {required = true, list = true},
		})
	)
end

function export.antsense_t(frame)
	return antsense(
		process_params(frame:getParent().args, {
			 = {required = true, list = true},
		})
	)
end

return export