Jump to content

Module:Legislationuk

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Theknightwho (talk | contribs) at 19:47, 12 July 2021 (Created page with 'local p = {} function p.repealed( frame ) local inputRepealed inputRepealed = frame if inputRepealed == "y" then return "style=" .. utf8.char(34) .. "background: #f2cece; color: #000000; border: 1px #bfa3a3; border-style: solid none solid solid" .. utf8.char(34) else return "style=" .. utf8.char(34) .. "background: #ececec; border-style: solid none solid solid" .. utf8.char(34) end end return p'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local p = {}

function p.repealed( frame )
	
	local inputRepealed
	inputRepealed = frame
	
	if inputRepealed == "y" then
		return "style=" .. utf8.char(34) .. "background: #f2cece; color: #000000; border: 1px #bfa3a3; border-style: solid none solid solid" .. utf8.char(34)
	else
		return "style=" .. utf8.char(34) .. "background: #ececec; border-style: solid none solid solid" .. utf8.char(34)
	end
end

return p