Module:FormatText: Difference between revisions

From Guild of Archivists
(new page)
 
m (1 revision imported)
 

Latest revision as of 07:26, 30 October 2015

Documentation for this module may be created at Module:FormatText/doc

local p = {}

function p.italicize(frame)
    return '<i>' .. frame.args[1] .. '</i>'
end

return p