Documentation for this module may be created at Module:Sandbox/StefanSong/hello/doc

local p = {}
local messageBox = require('Module:Message box')

function p.AfD(frame)
 	local text = 'This page was nominated for [[Wikipedia:Deletion policy|deletion]]' 
 	local result = frame.args.result
 	local page = frame.args.page
 	local collapse = frame.args.collapse
 	local numbered = frame.args.numbered
 	if collapse then
 		text = text..' Please review the prior discussions if you are considering re-nomination'
 	else 
 		text = text..' The result of the discussion was <strong>'..result..'</strong>'
 	end
 	text = text .. '<table style="width:100%; background-color: #f8eaba;"><tr><td>'
 	text = text.. '</td></tr></table>'
	return messageBox.main( 'tmbox', {
        type = 'notice',
        image = '[[Image:Clipboard.svg|35px|Articles for deletion]]',
        smallimage = 'none',
        text = text
    }) 
    
end

return p