יחידה:Lexicon

פון המכלול
קפיצה לניווט קפיצה לחיפוש

מען קען שאפן דאקומענטאציע פאר דעם מאדול ביי יחידה:Lexicon/דאק

local p = {}

local function stripToNil(text)
	-- If text is a string, return its trimmed content, or nil if empty.
	-- Otherwise return text (which may, for example, be nil).
	if type(text) == 'string' then
		text = text:match('(%S.-)%s*$')
		local delink = require('Module:Delink')._delink
		text = delink({text, wikilinks = "target"})
	end
	return text
end

function p.fetch(frame)
	-- Initialise and populate variables
	local getArgs = require("Module:Arguments").getArgs
	local args = getArgs(frame)
	local data = mw.loadData('יחידה:Lexicon/Data')
	local word = stripToNil(args[1])
	return data.words[word]
end

return p