I am trying to create for my needs an embed with my discord.js bot. Unfortuanlty I can't figure out how to do multiple lines in one value field. I tried with the new line character \n, but this was awful, because my lines were getting really long and unreadable, and you can't just start a new coding line in javascript, because semicolons are optional.
Does someone have an idea? Here is a template:
const embed = new Discord.MessageEmbed()
.setTitle("EVERY ROLE EXPLAINED")
.setColor(color)
.addFields(
{name: "__Column 1__", value: "line 1\n line 2\line three", inline: true},
{name: "__Column 2__", value: "line 1\n line 2\line three", inline: true}
)