Jump to content

Module:Cat topic in year

From Simple English Wikipedia, the free encyclopedia
Revision as of 22:50, 18 September 2022 by Animal lover 666 (talk | changes)

Documentation for this module may be created at Module:Cat topic in year/doc

local p

function p.main(frame)
	year=frame.args["year"] or frame:getParent().args["year"] or os.date( "%Y" )
	topic=frame.args["topic"] or frame:getParent().args["topic"]
	nbsp=mw.text.decode(" ")
	
	data="{| class=\"infobox\" width=\"400\"\n"..
		"|-\n"..
		"| align=\"right\"  | <small>'''"..mw.getContentLanguage():ucfirst(topic)..
		nbsp.."by"..nbsp.."year'''</small>\n"..
		"| align=\"center\" | "
	
end

return p