Adjust markdown headers

This commit is contained in:
Dragon Fire
2024-03-27 18:36:21 -04:00
parent 7ec36589d8
commit 59355e4bd7
+1 -1
View File
@@ -30,7 +30,7 @@ module.exports = class GenerateCreditCommand extends Command {
}).join('\n');
})
.filter(cmds => cmds);
const file = Buffer.from(`# Credits\n## NPM Packages\n${npm}\n## Other Credits\n${list.join('\n')}`);
const file = Buffer.from(`## Credits\n### NPM Packages\n${npm}\n### Other Credits\n${list.join('\n')}`);
await msg.direct({ files: [{ attachment: file, name: 'credits.txt' }] });
return msg.say('📬 Sent `credits.txt` to your DMs!');
}