Module:If preview/preview warning counter

From English Wikipedia @ Freddythechick
local p = {
	count = 0
}

function p.incr()
	p.count = p.count + 1
	return p.count
end

return p