本模块包含丹麥語的新條目建立規則;有關概述,請參見en:WT:ACCEL,有關創建新規則的資訊,請參見en:Module:accel


return {generate = function (params, entry)
	local template = {
		["impr"] = "imperative of",
		["pres"] = "present tense of",
		["past"] = "past tense of",
		["past|ptcp"] = "past participle of",
		["pasv"] = "passive of",
		["pasv|past"] = "passive past tense of",
		["pres|ptcp"] = "present participle of",
		["gerund"] = "gerund of",
		
		["superlative|pred"] = "superlative predicative of",
		["superlative|attr"] = "superlative attributive of"
	}

	if params.form == "e-form" then
		entry.def = "{{da-e-form of|" .. params.origin .. "}}"
	elseif template[params.form] then
		entry.def = entry.make_def(template[params.form])
	end
end}