There are no
reviewed versions of this page, so it may
not have been checked for adherence to standards.
Documentation for this module may be created at Module:FormatText/doc
function enclose(text, tag)
return '<' .. tag .. '>' .. text .. '</' .. tag .. '>';
end
local p = {}
function p.bold(text)
return '<strong>' .. text .. '</strong>'
end
return p;