Difference between revisions of "Module:FormatText"

From RobotX
Jump to navigation Jump to search
Mediawiki>MZMcBride
(new page)
 
m (1 revision imported)
 
(No difference)

Latest revision as of 23:41, 30 November 2019

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