I’ve noticed an issue after the recent rework of the Playground. When I copy text from the output section, all the line breaks (empty lines) are lost. This is particularly problematic for me because I often need to copy code snippets or formatted text, and the lack of proper spacing makes it difficult to read and use.
For example, if the output in the Playground looks like this:
def hello_world():
print("Hello, world!")
hello_world()
When I copy and paste it into my text editor, it ends up like this:
``` def hello_world(): print("Hello, world!") hello_world() ```
As you can see, the empty line between the function definition and the function call is missing. This issue wasn’t present before the rework, so I’m wondering if anyone else is experiencing the same problem or if there’s a workaround.