I wanna make the button to the tweet page and designate what text and what url and hashtags to tweet, I want to tweet with the line break
`
const sendText = "aa \n"
const sendURL = window.location.href;
window.open("https://twitter.com/intent/tweet?text=" + sendText + "&url=" + sendURL + "&hashtags=a,b");
`
I tried \n and br tag and [br /] but twitter still ignores me