Reputation: 1
I'm using IFTTT to post a video from a YouTube channel to a Discord server but the character that is in the title of the video didn't come out as it is.
The character came out as &
instead of the character &
.
Thanks for the help, I appreciate it so much.
This is how I write the body:
{"content":"*{{Title}}*\n \n{{Url}}"}
This is the output:
From Alcoholic & Drug Addict to Following Jesus!
https://www.youtube.com/watch?v=q4pGhhabBbM
I want it to come out as:
From Alcoholic & Drug Addict to Following Jesus!
https://www.youtube.com/watch?v=q4pGhhabBbM
Upvotes: 0
Views: 92
Reputation: 11
You should consider using \&
and it should work.
Basically use \
before each special character you want to use.
Upvotes: 0