Documentation for this module may be created at Module:ShortDescription/doc
local p = {} function p.shortdesc(frame) local description = frame.args[1] or "No short description available." return mw.html.create('div') :addClass('short-description') :css('font-style', 'italic') :css('color', '#555') :wikitext(description) end return p