이 모듈에 대한 설명문서는 모듈:QoD/설명문서에서 만들 수 있습니다

local dayBase = 'Wikiquote:Quote of the day/'
local lang = mw.language.getContentLanguage()
local p = {}

function msg(monthName)
	if string.len(monthName)<=3 then
		return monthName..' long'
	end
	return monthName
end

function p.list(frame)
	local s = frame.args[1]
	if s==nil or s=='' then
		s = mw.title.getCurrentTitle().subpageText
	end
	local month, year = string.match(s,'^(%w+) (%d+)$')
	if month==nil or year==nil then
		s = mw.title.new(frame:getTitle()).subpageText
	end
	month, year = string.match(s,'^(%w+) (%d+)$')
	if month~=nil and year~=nil then
		local output = {}
		local viw = frame:preprocess('{{lcfirst:{{int:view}}}}')
		local tlk = frame:preprocess('{{lcfirst:{{int:talk}}}}')
		local his = frame:preprocess('{{lcfirst:{{int:history short}}}}')
		for x = 1,tonumber(lang:formatDate('t','1 '..month..' '..year)) do
			local page = mw.title.new(dayBase..month..' '..x..', '..year)
			local t = ';[['..month..' '..x..']]\n'
			if page.exists then
				t = t..frame:preprocess(page:getContent())
			else
				t = t..'[['..page.fullText..']]'
			end
			t = t..' <br clear="all">\n'
			t = t..'[['..page.fullText..'|'..viw..']] - [['..page.talkPageTitle.fullText..'|'
			t = t..tlk..']] - ['..page:fullUrl{action = 'history'}..' '..his..']'
			table.insert(output,t)
		end
		output = table.concat(output,'\n----\n')
		output = output..'\n[[tr:Vikisöz:Günün sözü/Arşiv/'..mw.message.new(msg(month)):inLanguage('tr'):plain()..' '..year..']]'
		return output
	end
end

return p