module.exports = { bold: function(str) { return `**${str}**`; }, italic: function(str) { return `*${str}*`; } };