local p =
local conversion_table =
function p._convert(args) if args
nil then return end local num_str = tostring(args[1]) local new_str, _ = string.gsub(num_str, '[0-9.]', conversion_table) return new_strend
function p.convert(frame) return p._convert(frame.args)end
return p