Module:FormatText

From Wikipedia

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;