I have a share link in my game that opens twitter with a pre-written text like so:
OS.shell_open("https://twitter.com/intent/tweet?text=Hello\n\nWorld")
This works fine when I preview my game during development but after I export it the new lines are stripped out so the text is all in a single line.
I also noticed it's stripping away hashtags so I think it's the compiler trying to be clever and removing newlines and # thinking they are comments
Is there any way to prevent this or is it a bug?
Thanks!