Created
December 12, 2023 08:41
-
-
Save Rouhollah/e3b0a8036f3e1244860b089bcd66d22e to your computer and use it in GitHub Desktop.
RTL or LTR for chatGPT site
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function() { [...document.querySelectorAll("pre")].forEach(ele => ele.style.direction = 'ltr'); [...document.querySelectorAll("p")].forEach(ele => ele.style.direction = ele.style.direction === 'ltr' ? 'rtl' : 'ltr'); })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment