Module:Cat topic in year
Appearance
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