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